From 9bee34500cac72be351ffb6abd79f3a0a40d5920 Mon Sep 17 00:00:00 2001 From: jdrouhard Date: Sat, 18 Sep 2021 11:27:00 -0500 Subject: [PATCH] Support attribute statements under case statements (#83) --- grammar.js | 7 + src/grammar.json | 29 + src/node-types.json | 4 + src/parser.c | 79281 ++++++++++++++++++----------------- test/corpus/statements.txt | 37 +- 5 files changed, 40030 insertions(+), 39328 deletions(-) diff --git a/grammar.js b/grammar.js index 7133705..e48e48a 100644 --- a/grammar.js +++ b/grammar.js @@ -47,6 +47,7 @@ module.exports = grammar({ [$._type_specifier, $.macro_type_specifier], [$.sized_type_specifier], [$._declaration_modifiers, $.attributed_statement], + [$._declaration_modifiers, $.attributed_non_case_statement], ], word: $ => $.identifier, @@ -596,6 +597,11 @@ module.exports = grammar({ $._statement ), + attributed_non_case_statement: $ => seq( + repeat1($.attribute_declaration), + $._non_case_statement + ), + _statement: $ => choice( $.case_statement, $._non_case_statement @@ -653,6 +659,7 @@ module.exports = grammar({ ), ':', repeat(choice( + alias($.attributed_non_case_statement, $.attributed_statement), $._non_case_statement, $.declaration, $.type_definition diff --git a/src/grammar.json b/src/grammar.json index ba3505b..d525fed 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3786,6 +3786,22 @@ } ] }, + "attributed_non_case_statement": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + }, + { + "type": "SYMBOL", + "name": "_non_case_statement" + } + ] + }, "_statement": { "type": "CHOICE", "members": [ @@ -4023,6 +4039,15 @@ "content": { "type": "CHOICE", "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "attributed_non_case_statement" + }, + "named": true, + "value": "attributed_statement" + }, { "type": "SYMBOL", "name": "_non_case_statement" @@ -6552,6 +6577,10 @@ [ "_declaration_modifiers", "attributed_statement" + ], + [ + "_declaration_modifiers", + "attributed_non_case_statement" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index 3d2b6db..381e3ac 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -852,6 +852,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attributed_statement", + "named": true + }, { "type": "break_statement", "named": true diff --git a/src/parser.c b/src/parser.c index 8da61c3..121f1d0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1450 -#define LARGE_STATE_COUNT 378 -#define SYMBOL_COUNT 265 +#define STATE_COUNT 1458 +#define LARGE_STATE_COUNT 386 +#define SYMBOL_COUNT 266 #define ALIAS_COUNT 3 #define TOKEN_COUNT 128 #define EXTERNAL_TOKEN_COUNT 0 @@ -221,69 +221,70 @@ enum { sym_parameter_list = 202, sym_parameter_declaration = 203, sym_attributed_statement = 204, - sym_labeled_statement = 205, - sym_expression_statement = 206, - sym_if_statement = 207, - sym_switch_statement = 208, - sym_case_statement = 209, - sym_while_statement = 210, - sym_do_statement = 211, - sym_for_statement = 212, - sym_return_statement = 213, - sym_break_statement = 214, - sym_continue_statement = 215, - sym_goto_statement = 216, - sym__expression = 217, - sym_comma_expression = 218, - sym_conditional_expression = 219, - sym_assignment_expression = 220, - sym_pointer_expression = 221, - sym_unary_expression = 222, - sym_binary_expression = 223, - sym_update_expression = 224, - sym_cast_expression = 225, - sym_type_descriptor = 226, - sym_sizeof_expression = 227, - sym_subscript_expression = 228, - sym_call_expression = 229, - sym_argument_list = 230, - sym_field_expression = 231, - sym_compound_literal_expression = 232, - sym_parenthesized_expression = 233, - sym_initializer_list = 234, - sym_initializer_pair = 235, - sym_subscript_designator = 236, - sym_field_designator = 237, - sym_char_literal = 238, - sym_concatenated_string = 239, - sym_string_literal = 240, - sym__empty_declaration = 241, - sym_macro_type_specifier = 242, - aux_sym_translation_unit_repeat1 = 243, - aux_sym_preproc_params_repeat1 = 244, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 245, - aux_sym_preproc_argument_list_repeat1 = 246, - aux_sym_declaration_repeat1 = 247, - aux_sym_type_definition_repeat1 = 248, - aux_sym_type_definition_repeat2 = 249, - aux_sym__declaration_specifiers_repeat1 = 250, - aux_sym_attribute_declaration_repeat1 = 251, - aux_sym_attributed_declarator_repeat1 = 252, - aux_sym_pointer_declarator_repeat1 = 253, - aux_sym_function_declarator_repeat1 = 254, - aux_sym_sized_type_specifier_repeat1 = 255, - aux_sym_enumerator_list_repeat1 = 256, - aux_sym_field_declaration_repeat1 = 257, - aux_sym_parameter_list_repeat1 = 258, - aux_sym_case_statement_repeat1 = 259, - aux_sym_argument_list_repeat1 = 260, - aux_sym_initializer_list_repeat1 = 261, - aux_sym_initializer_pair_repeat1 = 262, - aux_sym_concatenated_string_repeat1 = 263, - aux_sym_string_literal_repeat1 = 264, - alias_sym_field_identifier = 265, - alias_sym_statement_identifier = 266, - alias_sym_type_identifier = 267, + sym_attributed_non_case_statement = 205, + sym_labeled_statement = 206, + sym_expression_statement = 207, + sym_if_statement = 208, + sym_switch_statement = 209, + sym_case_statement = 210, + sym_while_statement = 211, + sym_do_statement = 212, + sym_for_statement = 213, + sym_return_statement = 214, + sym_break_statement = 215, + sym_continue_statement = 216, + sym_goto_statement = 217, + sym__expression = 218, + sym_comma_expression = 219, + sym_conditional_expression = 220, + sym_assignment_expression = 221, + sym_pointer_expression = 222, + sym_unary_expression = 223, + sym_binary_expression = 224, + sym_update_expression = 225, + sym_cast_expression = 226, + sym_type_descriptor = 227, + sym_sizeof_expression = 228, + sym_subscript_expression = 229, + sym_call_expression = 230, + sym_argument_list = 231, + sym_field_expression = 232, + sym_compound_literal_expression = 233, + sym_parenthesized_expression = 234, + sym_initializer_list = 235, + sym_initializer_pair = 236, + sym_subscript_designator = 237, + sym_field_designator = 238, + sym_char_literal = 239, + sym_concatenated_string = 240, + sym_string_literal = 241, + sym__empty_declaration = 242, + sym_macro_type_specifier = 243, + aux_sym_translation_unit_repeat1 = 244, + aux_sym_preproc_params_repeat1 = 245, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 246, + aux_sym_preproc_argument_list_repeat1 = 247, + aux_sym_declaration_repeat1 = 248, + aux_sym_type_definition_repeat1 = 249, + aux_sym_type_definition_repeat2 = 250, + aux_sym__declaration_specifiers_repeat1 = 251, + aux_sym_attribute_declaration_repeat1 = 252, + aux_sym_attributed_declarator_repeat1 = 253, + aux_sym_pointer_declarator_repeat1 = 254, + aux_sym_function_declarator_repeat1 = 255, + aux_sym_sized_type_specifier_repeat1 = 256, + aux_sym_enumerator_list_repeat1 = 257, + aux_sym_field_declaration_repeat1 = 258, + aux_sym_parameter_list_repeat1 = 259, + aux_sym_case_statement_repeat1 = 260, + aux_sym_argument_list_repeat1 = 261, + aux_sym_initializer_list_repeat1 = 262, + aux_sym_initializer_pair_repeat1 = 263, + aux_sym_concatenated_string_repeat1 = 264, + aux_sym_string_literal_repeat1 = 265, + alias_sym_field_identifier = 266, + alias_sym_statement_identifier = 267, + alias_sym_type_identifier = 268, }; static const char * const ts_symbol_names[] = { @@ -492,6 +493,7 @@ static const char * const ts_symbol_names[] = { [sym_parameter_list] = "parameter_list", [sym_parameter_declaration] = "parameter_declaration", [sym_attributed_statement] = "attributed_statement", + [sym_attributed_non_case_statement] = "attributed_statement", [sym_labeled_statement] = "labeled_statement", [sym_expression_statement] = "expression_statement", [sym_if_statement] = "if_statement", @@ -763,6 +765,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_parameter_list] = sym_parameter_list, [sym_parameter_declaration] = sym_parameter_declaration, [sym_attributed_statement] = sym_attributed_statement, + [sym_attributed_non_case_statement] = sym_attributed_statement, [sym_labeled_statement] = sym_labeled_statement, [sym_expression_statement] = sym_expression_statement, [sym_if_statement] = sym_if_statement, @@ -1654,6 +1657,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_attributed_non_case_statement] = { + .visible = true, + .named = true, + }, [sym_labeled_statement] = { .visible = true, .named = true, @@ -2446,6 +2453,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(20) END_STATE(); case 22: + if (lookahead == '\n') SKIP(36) + if (lookahead == '"') ADVANCE(237); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(241); + if (lookahead != 0) ADVANCE(242); + END_STATE(); + case 23: + if (lookahead == '\n') ADVANCE(244); + if (lookahead == '\r') ADVANCE(243); + if (lookahead == 'U') ADVANCE(76); + if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'x') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); + if (lookahead != 0) ADVANCE(243); + END_STATE(); + case 24: if (lookahead == '\n') ADVANCE(87); if (lookahead == '(') ADVANCE(89); if (lookahead == '/') ADVANCE(131); @@ -2455,7 +2481,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(128); if (lookahead != 0) ADVANCE(132); END_STATE(); - case 23: + case 25: if (lookahead == '\n') ADVANCE(87); if (lookahead == '/') ADVANCE(131); if (lookahead == '\\') ADVANCE(129); @@ -2464,25 +2490,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(128); if (lookahead != 0) ADVANCE(132); END_STATE(); - case 24: - if (lookahead == '\n') SKIP(36) - if (lookahead == '"') ADVANCE(237); - if (lookahead == '/') ADVANCE(238); - if (lookahead == '\\') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(241); - if (lookahead != 0) ADVANCE(242); - END_STATE(); - case 25: - if (lookahead == '\n') ADVANCE(244); - if (lookahead == '\r') ADVANCE(243); - if (lookahead == 'U') ADVANCE(76); - if (lookahead == 'u') ADVANCE(72); - if (lookahead == 'x') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (lookahead != 0) ADVANCE(243); - END_STATE(); case 26: if (lookahead == '\n') SKIP(44) if (lookahead == '/') ADVANCE(231); @@ -2772,7 +2779,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 36: if (lookahead == '"') ADVANCE(237); if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\\') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2811,7 +2818,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 44: if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\\') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4029,7 +4036,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 232: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\\') ADVANCE(23); END_STATE(); case 233: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -4095,7 +4102,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 244: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\\') ADVANCE(23); END_STATE(); case 245: ACCEPT_TOKEN(sym_escape_sequence); @@ -5387,12 +5394,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [18] = {.lex_state = 28}, [19] = {.lex_state = 28}, [20] = {.lex_state = 28}, - [21] = {.lex_state = 29}, - [22] = {.lex_state = 29}, - [23] = {.lex_state = 29}, + [21] = {.lex_state = 83}, + [22] = {.lex_state = 83}, + [23] = {.lex_state = 83}, [24] = {.lex_state = 83}, [25] = {.lex_state = 83}, - [26] = {.lex_state = 83}, + [26] = {.lex_state = 29}, [27] = {.lex_state = 83}, [28] = {.lex_state = 83}, [29] = {.lex_state = 83}, @@ -5404,8 +5411,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [35] = {.lex_state = 83}, [36] = {.lex_state = 83}, [37] = {.lex_state = 83}, - [38] = {.lex_state = 83}, - [39] = {.lex_state = 83}, + [38] = {.lex_state = 29}, + [39] = {.lex_state = 29}, [40] = {.lex_state = 83}, [41] = {.lex_state = 83}, [42] = {.lex_state = 83}, @@ -5414,18 +5421,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [45] = {.lex_state = 28}, [46] = {.lex_state = 28}, [47] = {.lex_state = 28}, - [48] = {.lex_state = 29}, - [49] = {.lex_state = 83}, - [50] = {.lex_state = 29}, - [51] = {.lex_state = 29}, - [52] = {.lex_state = 29}, - [53] = {.lex_state = 83}, + [48] = {.lex_state = 83}, + [49] = {.lex_state = 29}, + [50] = {.lex_state = 83}, + [51] = {.lex_state = 83}, + [52] = {.lex_state = 83}, + [53] = {.lex_state = 29}, [54] = {.lex_state = 29}, [55] = {.lex_state = 83}, [56] = {.lex_state = 83}, [57] = {.lex_state = 83}, - [58] = {.lex_state = 83}, - [59] = {.lex_state = 83}, + [58] = {.lex_state = 29}, + [59] = {.lex_state = 29}, [60] = {.lex_state = 83}, [61] = {.lex_state = 83}, [62] = {.lex_state = 83}, @@ -5476,7 +5483,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [107] = {.lex_state = 28}, [108] = {.lex_state = 28}, [109] = {.lex_state = 28}, - [110] = {.lex_state = 27}, + [110] = {.lex_state = 28}, [111] = {.lex_state = 28}, [112] = {.lex_state = 28}, [113] = {.lex_state = 28}, @@ -5485,192 +5492,192 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 28}, [117] = {.lex_state = 28}, [118] = {.lex_state = 28}, - [119] = {.lex_state = 28}, + [119] = {.lex_state = 27}, [120] = {.lex_state = 28}, [121] = {.lex_state = 28}, [122] = {.lex_state = 28}, [123] = {.lex_state = 28}, [124] = {.lex_state = 28}, [125] = {.lex_state = 28}, - [126] = {.lex_state = 29}, - [127] = {.lex_state = 83}, + [126] = {.lex_state = 28}, + [127] = {.lex_state = 29}, [128] = {.lex_state = 83}, [129] = {.lex_state = 83}, [130] = {.lex_state = 83}, - [131] = {.lex_state = 83}, - [132] = {.lex_state = 83}, - [133] = {.lex_state = 83}, + [131] = {.lex_state = 29}, + [132] = {.lex_state = 29}, + [133] = {.lex_state = 29}, [134] = {.lex_state = 83}, [135] = {.lex_state = 83}, [136] = {.lex_state = 83}, - [137] = {.lex_state = 83}, + [137] = {.lex_state = 29}, [138] = {.lex_state = 83}, [139] = {.lex_state = 83}, [140] = {.lex_state = 83}, - [141] = {.lex_state = 83}, - [142] = {.lex_state = 29}, + [141] = {.lex_state = 29}, + [142] = {.lex_state = 83}, [143] = {.lex_state = 83}, - [144] = {.lex_state = 29}, - [145] = {.lex_state = 29}, + [144] = {.lex_state = 83}, + [145] = {.lex_state = 83}, [146] = {.lex_state = 83}, [147] = {.lex_state = 83}, - [148] = {.lex_state = 29}, - [149] = {.lex_state = 83}, + [148] = {.lex_state = 83}, + [149] = {.lex_state = 29}, [150] = {.lex_state = 83}, [151] = {.lex_state = 83}, [152] = {.lex_state = 83}, - [153] = {.lex_state = 83}, - [154] = {.lex_state = 29}, - [155] = {.lex_state = 83}, - [156] = {.lex_state = 83}, - [157] = {.lex_state = 29}, + [153] = {.lex_state = 29}, + [154] = {.lex_state = 83}, + [155] = {.lex_state = 29}, + [156] = {.lex_state = 29}, + [157] = {.lex_state = 83}, [158] = {.lex_state = 83}, - [159] = {.lex_state = 29}, + [159] = {.lex_state = 83}, [160] = {.lex_state = 83}, - [161] = {.lex_state = 83}, - [162] = {.lex_state = 29}, - [163] = {.lex_state = 29}, + [161] = {.lex_state = 29}, + [162] = {.lex_state = 83}, + [163] = {.lex_state = 83}, [164] = {.lex_state = 83}, - [165] = {.lex_state = 83}, + [165] = {.lex_state = 29}, [166] = {.lex_state = 83}, [167] = {.lex_state = 83}, - [168] = {.lex_state = 29}, - [169] = {.lex_state = 83}, + [168] = {.lex_state = 83}, + [169] = {.lex_state = 29}, [170] = {.lex_state = 83}, [171] = {.lex_state = 29}, - [172] = {.lex_state = 29}, + [172] = {.lex_state = 83}, [173] = {.lex_state = 83}, [174] = {.lex_state = 83}, [175] = {.lex_state = 83}, - [176] = {.lex_state = 29}, + [176] = {.lex_state = 83}, [177] = {.lex_state = 83}, - [178] = {.lex_state = 83}, - [179] = {.lex_state = 29}, + [178] = {.lex_state = 29}, + [179] = {.lex_state = 83}, [180] = {.lex_state = 83}, [181] = {.lex_state = 83}, - [182] = {.lex_state = 29}, + [182] = {.lex_state = 83}, [183] = {.lex_state = 83}, [184] = {.lex_state = 29}, - [185] = {.lex_state = 29}, - [186] = {.lex_state = 29}, - [187] = {.lex_state = 83}, + [185] = {.lex_state = 83}, + [186] = {.lex_state = 83}, + [187] = {.lex_state = 29}, [188] = {.lex_state = 83}, - [189] = {.lex_state = 83}, + [189] = {.lex_state = 29}, [190] = {.lex_state = 83}, - [191] = {.lex_state = 83}, - [192] = {.lex_state = 83}, + [191] = {.lex_state = 29}, + [192] = {.lex_state = 29}, [193] = {.lex_state = 29}, [194] = {.lex_state = 83}, - [195] = {.lex_state = 29}, - [196] = {.lex_state = 29}, + [195] = {.lex_state = 83}, + [196] = {.lex_state = 83}, [197] = {.lex_state = 83}, - [198] = {.lex_state = 29}, + [198] = {.lex_state = 83}, [199] = {.lex_state = 83}, [200] = {.lex_state = 83}, - [201] = {.lex_state = 29}, - [202] = {.lex_state = 29}, + [201] = {.lex_state = 83}, + [202] = {.lex_state = 83}, [203] = {.lex_state = 83}, - [204] = {.lex_state = 83}, + [204] = {.lex_state = 29}, [205] = {.lex_state = 29}, - [206] = {.lex_state = 29}, + [206] = {.lex_state = 83}, [207] = {.lex_state = 83}, - [208] = {.lex_state = 83}, + [208] = {.lex_state = 29}, [209] = {.lex_state = 83}, [210] = {.lex_state = 83}, [211] = {.lex_state = 83}, - [212] = {.lex_state = 83}, - [213] = {.lex_state = 29}, + [212] = {.lex_state = 29}, + [213] = {.lex_state = 83}, [214] = {.lex_state = 83}, - [215] = {.lex_state = 29}, + [215] = {.lex_state = 83}, [216] = {.lex_state = 29}, - [217] = {.lex_state = 83}, - [218] = {.lex_state = 29}, - [219] = {.lex_state = 29}, - [220] = {.lex_state = 83}, + [217] = {.lex_state = 29}, + [218] = {.lex_state = 83}, + [219] = {.lex_state = 83}, + [220] = {.lex_state = 29}, [221] = {.lex_state = 29}, - [222] = {.lex_state = 83}, - [223] = {.lex_state = 83}, - [224] = {.lex_state = 29}, + [222] = {.lex_state = 29}, + [223] = {.lex_state = 29}, + [224] = {.lex_state = 83}, [225] = {.lex_state = 83}, - [226] = {.lex_state = 29}, + [226] = {.lex_state = 83}, [227] = {.lex_state = 83}, [228] = {.lex_state = 83}, - [229] = {.lex_state = 83}, - [230] = {.lex_state = 83}, - [231] = {.lex_state = 83}, + [229] = {.lex_state = 29}, + [230] = {.lex_state = 29}, + [231] = {.lex_state = 29}, [232] = {.lex_state = 29}, [233] = {.lex_state = 83}, - [234] = {.lex_state = 83}, - [235] = {.lex_state = 83}, + [234] = {.lex_state = 29}, + [235] = {.lex_state = 29}, [236] = {.lex_state = 29}, [237] = {.lex_state = 83}, - [238] = {.lex_state = 83}, - [239] = {.lex_state = 29}, + [238] = {.lex_state = 29}, + [239] = {.lex_state = 83}, [240] = {.lex_state = 83}, [241] = {.lex_state = 83}, [242] = {.lex_state = 83}, [243] = {.lex_state = 83}, [244] = {.lex_state = 83}, - [245] = {.lex_state = 29}, - [246] = {.lex_state = 29}, + [245] = {.lex_state = 83}, + [246] = {.lex_state = 83}, [247] = {.lex_state = 83}, - [248] = {.lex_state = 29}, - [249] = {.lex_state = 83}, + [248] = {.lex_state = 83}, + [249] = {.lex_state = 29}, [250] = {.lex_state = 29}, [251] = {.lex_state = 29}, - [252] = {.lex_state = 29}, - [253] = {.lex_state = 83}, + [252] = {.lex_state = 83}, + [253] = {.lex_state = 29}, [254] = {.lex_state = 83}, - [255] = {.lex_state = 83}, + [255] = {.lex_state = 29}, [256] = {.lex_state = 83}, - [257] = {.lex_state = 83}, - [258] = {.lex_state = 83}, - [259] = {.lex_state = 29}, + [257] = {.lex_state = 29}, + [258] = {.lex_state = 29}, + [259] = {.lex_state = 83}, [260] = {.lex_state = 83}, - [261] = {.lex_state = 29}, - [262] = {.lex_state = 29}, + [261] = {.lex_state = 83}, + [262] = {.lex_state = 83}, [263] = {.lex_state = 29}, [264] = {.lex_state = 83}, [265] = {.lex_state = 29}, [266] = {.lex_state = 83}, - [267] = {.lex_state = 83}, + [267] = {.lex_state = 29}, [268] = {.lex_state = 83}, - [269] = {.lex_state = 83}, - [270] = {.lex_state = 29}, - [271] = {.lex_state = 83}, + [269] = {.lex_state = 29}, + [270] = {.lex_state = 83}, + [271] = {.lex_state = 29}, [272] = {.lex_state = 83}, - [273] = {.lex_state = 83}, + [273] = {.lex_state = 29}, [274] = {.lex_state = 83}, [275] = {.lex_state = 83}, [276] = {.lex_state = 83}, - [277] = {.lex_state = 83}, - [278] = {.lex_state = 29}, + [277] = {.lex_state = 29}, + [278] = {.lex_state = 83}, [279] = {.lex_state = 83}, - [280] = {.lex_state = 83}, - [281] = {.lex_state = 29}, - [282] = {.lex_state = 29}, + [280] = {.lex_state = 29}, + [281] = {.lex_state = 83}, + [282] = {.lex_state = 83}, [283] = {.lex_state = 83}, [284] = {.lex_state = 83}, [285] = {.lex_state = 83}, [286] = {.lex_state = 83}, [287] = {.lex_state = 83}, [288] = {.lex_state = 83}, - [289] = {.lex_state = 83}, - [290] = {.lex_state = 29}, - [291] = {.lex_state = 29}, + [289] = {.lex_state = 29}, + [290] = {.lex_state = 83}, + [291] = {.lex_state = 83}, [292] = {.lex_state = 83}, [293] = {.lex_state = 83}, - [294] = {.lex_state = 29}, + [294] = {.lex_state = 83}, [295] = {.lex_state = 83}, [296] = {.lex_state = 83}, - [297] = {.lex_state = 29}, + [297] = {.lex_state = 83}, [298] = {.lex_state = 83}, [299] = {.lex_state = 83}, - [300] = {.lex_state = 83}, - [301] = {.lex_state = 83}, + [300] = {.lex_state = 29}, + [301] = {.lex_state = 29}, [302] = {.lex_state = 83}, [303] = {.lex_state = 83}, - [304] = {.lex_state = 83}, + [304] = {.lex_state = 29}, [305] = {.lex_state = 83}, [306] = {.lex_state = 83}, [307] = {.lex_state = 83}, @@ -5735,7 +5742,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [366] = {.lex_state = 83}, [367] = {.lex_state = 83}, [368] = {.lex_state = 83}, - [369] = {.lex_state = 27}, + [369] = {.lex_state = 83}, [370] = {.lex_state = 83}, [371] = {.lex_state = 83}, [372] = {.lex_state = 83}, @@ -5743,19 +5750,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [374] = {.lex_state = 83}, [375] = {.lex_state = 83}, [376] = {.lex_state = 83}, - [377] = {.lex_state = 83}, - [378] = {.lex_state = 27}, + [377] = {.lex_state = 27}, + [378] = {.lex_state = 83}, [379] = {.lex_state = 83}, [380] = {.lex_state = 83}, [381] = {.lex_state = 83}, - [382] = {.lex_state = 33}, - [383] = {.lex_state = 33}, - [384] = {.lex_state = 33}, - [385] = {.lex_state = 33}, - [386] = {.lex_state = 33}, - [387] = {.lex_state = 33}, - [388] = {.lex_state = 33}, - [389] = {.lex_state = 33}, + [382] = {.lex_state = 83}, + [383] = {.lex_state = 83}, + [384] = {.lex_state = 83}, + [385] = {.lex_state = 83}, + [386] = {.lex_state = 83}, + [387] = {.lex_state = 27}, + [388] = {.lex_state = 83}, + [389] = {.lex_state = 83}, [390] = {.lex_state = 33}, [391] = {.lex_state = 33}, [392] = {.lex_state = 33}, @@ -5763,54 +5770,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [394] = {.lex_state = 33}, [395] = {.lex_state = 33}, [396] = {.lex_state = 33}, - [397] = {.lex_state = 34}, - [398] = {.lex_state = 34}, - [399] = {.lex_state = 34}, - [400] = {.lex_state = 34}, - [401] = {.lex_state = 34}, - [402] = {.lex_state = 34}, - [403] = {.lex_state = 34}, - [404] = {.lex_state = 34}, - [405] = {.lex_state = 33}, - [406] = {.lex_state = 83}, + [397] = {.lex_state = 33}, + [398] = {.lex_state = 33}, + [399] = {.lex_state = 33}, + [400] = {.lex_state = 33}, + [401] = {.lex_state = 33}, + [402] = {.lex_state = 33}, + [403] = {.lex_state = 33}, + [404] = {.lex_state = 33}, + [405] = {.lex_state = 34}, + [406] = {.lex_state = 34}, [407] = {.lex_state = 34}, - [408] = {.lex_state = 83}, - [409] = {.lex_state = 83}, + [408] = {.lex_state = 34}, + [409] = {.lex_state = 34}, [410] = {.lex_state = 34}, - [411] = {.lex_state = 83}, + [411] = {.lex_state = 34}, [412] = {.lex_state = 34}, - [413] = {.lex_state = 32}, - [414] = {.lex_state = 34}, - [415] = {.lex_state = 32}, - [416] = {.lex_state = 32}, - [417] = {.lex_state = 31}, + [413] = {.lex_state = 83}, + [414] = {.lex_state = 33}, + [415] = {.lex_state = 34}, + [416] = {.lex_state = 83}, + [417] = {.lex_state = 83}, [418] = {.lex_state = 83}, - [419] = {.lex_state = 31}, - [420] = {.lex_state = 31}, - [421] = {.lex_state = 83}, - [422] = {.lex_state = 83}, - [423] = {.lex_state = 83}, - [424] = {.lex_state = 83}, + [419] = {.lex_state = 34}, + [420] = {.lex_state = 32}, + [421] = {.lex_state = 34}, + [422] = {.lex_state = 34}, + [423] = {.lex_state = 32}, + [424] = {.lex_state = 32}, [425] = {.lex_state = 83}, - [426] = {.lex_state = 83}, + [426] = {.lex_state = 31}, [427] = {.lex_state = 83}, [428] = {.lex_state = 83}, - [429] = {.lex_state = 83}, - [430] = {.lex_state = 33}, - [431] = {.lex_state = 33}, - [432] = {.lex_state = 33}, - [433] = {.lex_state = 33}, - [434] = {.lex_state = 31}, - [435] = {.lex_state = 31}, - [436] = {.lex_state = 33}, + [429] = {.lex_state = 31}, + [430] = {.lex_state = 83}, + [431] = {.lex_state = 83}, + [432] = {.lex_state = 31}, + [433] = {.lex_state = 83}, + [434] = {.lex_state = 83}, + [435] = {.lex_state = 83}, + [436] = {.lex_state = 83}, [437] = {.lex_state = 83}, - [438] = {.lex_state = 83}, - [439] = {.lex_state = 83}, - [440] = {.lex_state = 83}, - [441] = {.lex_state = 83}, - [442] = {.lex_state = 83}, - [443] = {.lex_state = 83}, - [444] = {.lex_state = 83}, + [438] = {.lex_state = 33}, + [439] = {.lex_state = 33}, + [440] = {.lex_state = 33}, + [441] = {.lex_state = 33}, + [442] = {.lex_state = 33}, + [443] = {.lex_state = 31}, + [444] = {.lex_state = 31}, [445] = {.lex_state = 83}, [446] = {.lex_state = 83}, [447] = {.lex_state = 83}, @@ -5839,7 +5846,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [470] = {.lex_state = 83}, [471] = {.lex_state = 83}, [472] = {.lex_state = 83}, - [473] = {.lex_state = 34}, + [473] = {.lex_state = 83}, [474] = {.lex_state = 83}, [475] = {.lex_state = 83}, [476] = {.lex_state = 83}, @@ -5867,89 +5874,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [498] = {.lex_state = 83}, [499] = {.lex_state = 83}, [500] = {.lex_state = 34}, - [501] = {.lex_state = 34}, - [502] = {.lex_state = 34}, - [503] = {.lex_state = 34}, + [501] = {.lex_state = 83}, + [502] = {.lex_state = 83}, + [503] = {.lex_state = 83}, [504] = {.lex_state = 83}, [505] = {.lex_state = 83}, [506] = {.lex_state = 83}, - [507] = {.lex_state = 32}, + [507] = {.lex_state = 83}, [508] = {.lex_state = 83}, [509] = {.lex_state = 83}, - [510] = {.lex_state = 34}, + [510] = {.lex_state = 83}, [511] = {.lex_state = 83}, - [512] = {.lex_state = 34}, + [512] = {.lex_state = 83}, [513] = {.lex_state = 83}, [514] = {.lex_state = 83}, [515] = {.lex_state = 83}, [516] = {.lex_state = 83}, [517] = {.lex_state = 34}, - [518] = {.lex_state = 83}, - [519] = {.lex_state = 83}, + [518] = {.lex_state = 32}, + [519] = {.lex_state = 34}, [520] = {.lex_state = 83}, - [521] = {.lex_state = 83}, + [521] = {.lex_state = 34}, [522] = {.lex_state = 83}, [523] = {.lex_state = 34}, [524] = {.lex_state = 34}, [525] = {.lex_state = 34}, - [526] = {.lex_state = 83}, - [527] = {.lex_state = 83}, - [528] = {.lex_state = 83}, - [529] = {.lex_state = 83}, - [530] = {.lex_state = 83}, + [526] = {.lex_state = 34}, + [527] = {.lex_state = 34}, + [528] = {.lex_state = 34}, + [529] = {.lex_state = 34}, + [530] = {.lex_state = 34}, [531] = {.lex_state = 83}, - [532] = {.lex_state = 83}, + [532] = {.lex_state = 34}, [533] = {.lex_state = 34}, [534] = {.lex_state = 83}, [535] = {.lex_state = 83}, - [536] = {.lex_state = 34}, - [537] = {.lex_state = 34}, - [538] = {.lex_state = 83}, - [539] = {.lex_state = 34}, + [536] = {.lex_state = 83}, + [537] = {.lex_state = 83}, + [538] = {.lex_state = 34}, + [539] = {.lex_state = 83}, [540] = {.lex_state = 83}, - [541] = {.lex_state = 34}, + [541] = {.lex_state = 83}, [542] = {.lex_state = 83}, - [543] = {.lex_state = 34}, + [543] = {.lex_state = 83}, [544] = {.lex_state = 83}, - [545] = {.lex_state = 34}, - [546] = {.lex_state = 34}, + [545] = {.lex_state = 83}, + [546] = {.lex_state = 83}, [547] = {.lex_state = 34}, [548] = {.lex_state = 83}, [549] = {.lex_state = 34}, - [550] = {.lex_state = 34}, + [550] = {.lex_state = 83}, [551] = {.lex_state = 83}, [552] = {.lex_state = 83}, - [553] = {.lex_state = 32}, - [554] = {.lex_state = 34}, - [555] = {.lex_state = 34}, - [556] = {.lex_state = 34}, + [553] = {.lex_state = 83}, + [554] = {.lex_state = 83}, + [555] = {.lex_state = 83}, + [556] = {.lex_state = 83}, [557] = {.lex_state = 83}, [558] = {.lex_state = 83}, - [559] = {.lex_state = 34}, + [559] = {.lex_state = 32}, [560] = {.lex_state = 83}, [561] = {.lex_state = 83}, - [562] = {.lex_state = 83}, - [563] = {.lex_state = 83}, + [562] = {.lex_state = 34}, + [563] = {.lex_state = 34}, [564] = {.lex_state = 83}, [565] = {.lex_state = 83}, - [566] = {.lex_state = 83}, - [567] = {.lex_state = 34}, + [566] = {.lex_state = 34}, + [567] = {.lex_state = 83}, [568] = {.lex_state = 83}, - [569] = {.lex_state = 83}, + [569] = {.lex_state = 32}, [570] = {.lex_state = 83}, [571] = {.lex_state = 83}, - [572] = {.lex_state = 83}, - [573] = {.lex_state = 83}, - [574] = {.lex_state = 32}, + [572] = {.lex_state = 34}, + [573] = {.lex_state = 34}, + [574] = {.lex_state = 83}, [575] = {.lex_state = 83}, [576] = {.lex_state = 83}, [577] = {.lex_state = 83}, [578] = {.lex_state = 34}, [579] = {.lex_state = 83}, [580] = {.lex_state = 83}, - [581] = {.lex_state = 34}, + [581] = {.lex_state = 83}, [582] = {.lex_state = 83}, - [583] = {.lex_state = 83}, + [583] = {.lex_state = 34}, [584] = {.lex_state = 83}, [585] = {.lex_state = 83}, [586] = {.lex_state = 83}, @@ -5958,127 +5965,127 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [589] = {.lex_state = 83}, [590] = {.lex_state = 83}, [591] = {.lex_state = 83}, - [592] = {.lex_state = 34}, - [593] = {.lex_state = 34}, + [592] = {.lex_state = 83}, + [593] = {.lex_state = 83}, [594] = {.lex_state = 83}, [595] = {.lex_state = 83}, [596] = {.lex_state = 83}, [597] = {.lex_state = 83}, [598] = {.lex_state = 83}, [599] = {.lex_state = 83}, - [600] = {.lex_state = 83}, + [600] = {.lex_state = 34}, [601] = {.lex_state = 83}, [602] = {.lex_state = 83}, - [603] = {.lex_state = 83}, - [604] = {.lex_state = 83}, - [605] = {.lex_state = 34}, + [603] = {.lex_state = 34}, + [604] = {.lex_state = 34}, + [605] = {.lex_state = 83}, [606] = {.lex_state = 83}, - [607] = {.lex_state = 83}, + [607] = {.lex_state = 34}, [608] = {.lex_state = 34}, - [609] = {.lex_state = 34}, + [609] = {.lex_state = 83}, [610] = {.lex_state = 34}, - [611] = {.lex_state = 34}, - [612] = {.lex_state = 83}, - [613] = {.lex_state = 33}, + [611] = {.lex_state = 83}, + [612] = {.lex_state = 34}, + [613] = {.lex_state = 83}, [614] = {.lex_state = 34}, - [615] = {.lex_state = 34}, + [615] = {.lex_state = 33}, [616] = {.lex_state = 34}, - [617] = {.lex_state = 34}, + [617] = {.lex_state = 83}, [618] = {.lex_state = 34}, [619] = {.lex_state = 34}, - [620] = {.lex_state = 34}, + [620] = {.lex_state = 83}, [621] = {.lex_state = 34}, [622] = {.lex_state = 34}, - [623] = {.lex_state = 33}, + [623] = {.lex_state = 34}, [624] = {.lex_state = 34}, [625] = {.lex_state = 34}, - [626] = {.lex_state = 34}, + [626] = {.lex_state = 83}, [627] = {.lex_state = 34}, [628] = {.lex_state = 34}, [629] = {.lex_state = 34}, [630] = {.lex_state = 34}, - [631] = {.lex_state = 83}, + [631] = {.lex_state = 34}, [632] = {.lex_state = 34}, - [633] = {.lex_state = 34}, + [633] = {.lex_state = 33}, [634] = {.lex_state = 34}, [635] = {.lex_state = 34}, [636] = {.lex_state = 34}, - [637] = {.lex_state = 33}, - [638] = {.lex_state = 33}, - [639] = {.lex_state = 33}, - [640] = {.lex_state = 33}, - [641] = {.lex_state = 33}, - [642] = {.lex_state = 33}, - [643] = {.lex_state = 33}, - [644] = {.lex_state = 83}, - [645] = {.lex_state = 34}, - [646] = {.lex_state = 34}, - [647] = {.lex_state = 34}, - [648] = {.lex_state = 34}, - [649] = {.lex_state = 34}, - [650] = {.lex_state = 34}, - [651] = {.lex_state = 34}, - [652] = {.lex_state = 34}, + [637] = {.lex_state = 34}, + [638] = {.lex_state = 34}, + [639] = {.lex_state = 34}, + [640] = {.lex_state = 34}, + [641] = {.lex_state = 34}, + [642] = {.lex_state = 34}, + [643] = {.lex_state = 34}, + [644] = {.lex_state = 34}, + [645] = {.lex_state = 33}, + [646] = {.lex_state = 33}, + [647] = {.lex_state = 33}, + [648] = {.lex_state = 33}, + [649] = {.lex_state = 33}, + [650] = {.lex_state = 33}, + [651] = {.lex_state = 33}, + [652] = {.lex_state = 83}, [653] = {.lex_state = 34}, [654] = {.lex_state = 34}, [655] = {.lex_state = 34}, - [656] = {.lex_state = 33}, + [656] = {.lex_state = 34}, [657] = {.lex_state = 34}, - [658] = {.lex_state = 33}, - [659] = {.lex_state = 83}, - [660] = {.lex_state = 33}, - [661] = {.lex_state = 33}, - [662] = {.lex_state = 33}, + [658] = {.lex_state = 34}, + [659] = {.lex_state = 34}, + [660] = {.lex_state = 34}, + [661] = {.lex_state = 34}, + [662] = {.lex_state = 34}, [663] = {.lex_state = 33}, - [664] = {.lex_state = 33}, - [665] = {.lex_state = 33}, - [666] = {.lex_state = 34}, - [667] = {.lex_state = 33}, + [664] = {.lex_state = 34}, + [665] = {.lex_state = 34}, + [666] = {.lex_state = 33}, + [667] = {.lex_state = 83}, [668] = {.lex_state = 33}, [669] = {.lex_state = 33}, [670] = {.lex_state = 33}, [671] = {.lex_state = 33}, [672] = {.lex_state = 33}, [673] = {.lex_state = 33}, - [674] = {.lex_state = 33}, + [674] = {.lex_state = 34}, [675] = {.lex_state = 33}, [676] = {.lex_state = 33}, [677] = {.lex_state = 33}, - [678] = {.lex_state = 34}, + [678] = {.lex_state = 33}, [679] = {.lex_state = 33}, [680] = {.lex_state = 33}, [681] = {.lex_state = 33}, - [682] = {.lex_state = 34}, - [683] = {.lex_state = 33}, - [684] = {.lex_state = 34}, - [685] = {.lex_state = 33}, + [682] = {.lex_state = 33}, + [683] = {.lex_state = 34}, + [684] = {.lex_state = 33}, + [685] = {.lex_state = 34}, [686] = {.lex_state = 33}, [687] = {.lex_state = 33}, [688] = {.lex_state = 34}, - [689] = {.lex_state = 34}, - [690] = {.lex_state = 34}, - [691] = {.lex_state = 34}, - [692] = {.lex_state = 34}, - [693] = {.lex_state = 34}, - [694] = {.lex_state = 34}, - [695] = {.lex_state = 34}, - [696] = {.lex_state = 33}, - [697] = {.lex_state = 33}, + [689] = {.lex_state = 33}, + [690] = {.lex_state = 33}, + [691] = {.lex_state = 33}, + [692] = {.lex_state = 33}, + [693] = {.lex_state = 33}, + [694] = {.lex_state = 33}, + [695] = {.lex_state = 33}, + [696] = {.lex_state = 34}, + [697] = {.lex_state = 34}, [698] = {.lex_state = 34}, [699] = {.lex_state = 34}, - [700] = {.lex_state = 33}, - [701] = {.lex_state = 33}, - [702] = {.lex_state = 33}, + [700] = {.lex_state = 34}, + [701] = {.lex_state = 34}, + [702] = {.lex_state = 34}, [703] = {.lex_state = 34}, [704] = {.lex_state = 33}, - [705] = {.lex_state = 34}, - [706] = {.lex_state = 34}, + [705] = {.lex_state = 33}, + [706] = {.lex_state = 33}, [707] = {.lex_state = 34}, [708] = {.lex_state = 34}, [709] = {.lex_state = 34}, [710] = {.lex_state = 34}, [711] = {.lex_state = 34}, - [712] = {.lex_state = 34}, + [712] = {.lex_state = 33}, [713] = {.lex_state = 34}, [714] = {.lex_state = 34}, [715] = {.lex_state = 34}, @@ -6102,10 +6109,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [733] = {.lex_state = 34}, [734] = {.lex_state = 34}, [735] = {.lex_state = 34}, - [736] = {.lex_state = 34}, - [737] = {.lex_state = 32}, - [738] = {.lex_state = 31}, - [739] = {.lex_state = 34}, + [736] = {.lex_state = 33}, + [737] = {.lex_state = 34}, + [738] = {.lex_state = 34}, + [739] = {.lex_state = 33}, [740] = {.lex_state = 34}, [741] = {.lex_state = 34}, [742] = {.lex_state = 34}, @@ -6113,74 +6120,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [744] = {.lex_state = 34}, [745] = {.lex_state = 34}, [746] = {.lex_state = 34}, - [747] = {.lex_state = 34}, + [747] = {.lex_state = 32}, [748] = {.lex_state = 34}, - [749] = {.lex_state = 34}, + [749] = {.lex_state = 32}, [750] = {.lex_state = 34}, [751] = {.lex_state = 34}, - [752] = {.lex_state = 34}, + [752] = {.lex_state = 32}, [753] = {.lex_state = 34}, [754] = {.lex_state = 34}, [755] = {.lex_state = 34}, [756] = {.lex_state = 34}, - [757] = {.lex_state = 31}, - [758] = {.lex_state = 34}, + [757] = {.lex_state = 34}, + [758] = {.lex_state = 32}, [759] = {.lex_state = 34}, [760] = {.lex_state = 34}, - [761] = {.lex_state = 32}, - [762] = {.lex_state = 32}, + [761] = {.lex_state = 34}, + [762] = {.lex_state = 34}, [763] = {.lex_state = 34}, [764] = {.lex_state = 34}, [765] = {.lex_state = 34}, - [766] = {.lex_state = 34}, - [767] = {.lex_state = 33}, - [768] = {.lex_state = 32}, - [769] = {.lex_state = 32}, + [766] = {.lex_state = 32}, + [767] = {.lex_state = 34}, + [768] = {.lex_state = 34}, + [769] = {.lex_state = 34}, [770] = {.lex_state = 34}, - [771] = {.lex_state = 34}, + [771] = {.lex_state = 33}, [772] = {.lex_state = 34}, - [773] = {.lex_state = 33}, - [774] = {.lex_state = 32}, + [773] = {.lex_state = 34}, + [774] = {.lex_state = 34}, [775] = {.lex_state = 34}, - [776] = {.lex_state = 34}, + [776] = {.lex_state = 33}, [777] = {.lex_state = 34}, - [778] = {.lex_state = 32}, + [778] = {.lex_state = 34}, [779] = {.lex_state = 34}, - [780] = {.lex_state = 31}, + [780] = {.lex_state = 34}, [781] = {.lex_state = 34}, [782] = {.lex_state = 32}, [783] = {.lex_state = 34}, - [784] = {.lex_state = 34}, + [784] = {.lex_state = 32}, [785] = {.lex_state = 34}, - [786] = {.lex_state = 34}, + [786] = {.lex_state = 31}, [787] = {.lex_state = 34}, - [788] = {.lex_state = 34}, - [789] = {.lex_state = 32}, + [788] = {.lex_state = 32}, + [789] = {.lex_state = 34}, [790] = {.lex_state = 34}, - [791] = {.lex_state = 31}, - [792] = {.lex_state = 32}, - [793] = {.lex_state = 32}, - [794] = {.lex_state = 34}, + [791] = {.lex_state = 34}, + [792] = {.lex_state = 34}, + [793] = {.lex_state = 34}, + [794] = {.lex_state = 32}, [795] = {.lex_state = 34}, - [796] = {.lex_state = 32}, - [797] = {.lex_state = 34}, + [796] = {.lex_state = 34}, + [797] = {.lex_state = 32}, [798] = {.lex_state = 34}, - [799] = {.lex_state = 34}, + [799] = {.lex_state = 32}, [800] = {.lex_state = 34}, - [801] = {.lex_state = 34}, - [802] = {.lex_state = 34}, - [803] = {.lex_state = 32}, + [801] = {.lex_state = 32}, + [802] = {.lex_state = 32}, + [803] = {.lex_state = 34}, [804] = {.lex_state = 34}, [805] = {.lex_state = 34}, [806] = {.lex_state = 34}, [807] = {.lex_state = 34}, - [808] = {.lex_state = 34}, - [809] = {.lex_state = 32}, + [808] = {.lex_state = 31}, + [809] = {.lex_state = 34}, [810] = {.lex_state = 34}, - [811] = {.lex_state = 32}, + [811] = {.lex_state = 34}, [812] = {.lex_state = 34}, [813] = {.lex_state = 34}, - [814] = {.lex_state = 34}, + [814] = {.lex_state = 32}, [815] = {.lex_state = 34}, [816] = {.lex_state = 34}, [817] = {.lex_state = 32}, @@ -6188,20 +6195,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [819] = {.lex_state = 34}, [820] = {.lex_state = 34}, [821] = {.lex_state = 34}, - [822] = {.lex_state = 34}, - [823] = {.lex_state = 32}, + [822] = {.lex_state = 32}, + [823] = {.lex_state = 34}, [824] = {.lex_state = 34}, - [825] = {.lex_state = 32}, - [826] = {.lex_state = 32}, + [825] = {.lex_state = 31}, + [826] = {.lex_state = 34}, [827] = {.lex_state = 32}, - [828] = {.lex_state = 33}, - [829] = {.lex_state = 33}, - [830] = {.lex_state = 33}, - [831] = {.lex_state = 33}, - [832] = {.lex_state = 33}, - [833] = {.lex_state = 33}, - [834] = {.lex_state = 33}, - [835] = {.lex_state = 33}, + [828] = {.lex_state = 34}, + [829] = {.lex_state = 34}, + [830] = {.lex_state = 31}, + [831] = {.lex_state = 32}, + [832] = {.lex_state = 32}, + [833] = {.lex_state = 32}, + [834] = {.lex_state = 34}, + [835] = {.lex_state = 34}, [836] = {.lex_state = 33}, [837] = {.lex_state = 33}, [838] = {.lex_state = 33}, @@ -6235,7 +6242,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [866] = {.lex_state = 33}, [867] = {.lex_state = 33}, [868] = {.lex_state = 33}, - [869] = {.lex_state = 30}, + [869] = {.lex_state = 33}, [870] = {.lex_state = 33}, [871] = {.lex_state = 33}, [872] = {.lex_state = 33}, @@ -6250,89 +6257,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [881] = {.lex_state = 33}, [882] = {.lex_state = 33}, [883] = {.lex_state = 33}, - [884] = {.lex_state = 30}, - [885] = {.lex_state = 19}, + [884] = {.lex_state = 33}, + [885] = {.lex_state = 33}, [886] = {.lex_state = 33}, [887] = {.lex_state = 33}, - [888] = {.lex_state = 33}, - [889] = {.lex_state = 33}, - [890] = {.lex_state = 30}, + [888] = {.lex_state = 30}, + [889] = {.lex_state = 19}, + [890] = {.lex_state = 33}, [891] = {.lex_state = 33}, - [892] = {.lex_state = 33}, + [892] = {.lex_state = 30}, [893] = {.lex_state = 33}, [894] = {.lex_state = 33}, [895] = {.lex_state = 33}, - [896] = {.lex_state = 30}, + [896] = {.lex_state = 33}, [897] = {.lex_state = 30}, - [898] = {.lex_state = 30}, + [898] = {.lex_state = 33}, [899] = {.lex_state = 30}, - [900] = {.lex_state = 33}, + [900] = {.lex_state = 30}, [901] = {.lex_state = 33}, - [902] = {.lex_state = 33}, + [902] = {.lex_state = 30}, [903] = {.lex_state = 30}, [904] = {.lex_state = 30}, - [905] = {.lex_state = 33}, + [905] = {.lex_state = 30}, [906] = {.lex_state = 30}, [907] = {.lex_state = 30}, - [908] = {.lex_state = 33}, - [909] = {.lex_state = 33}, + [908] = {.lex_state = 30}, + [909] = {.lex_state = 30}, [910] = {.lex_state = 30}, [911] = {.lex_state = 30}, [912] = {.lex_state = 30}, [913] = {.lex_state = 30}, - [914] = {.lex_state = 33}, + [914] = {.lex_state = 30}, [915] = {.lex_state = 30}, - [916] = {.lex_state = 30}, + [916] = {.lex_state = 33}, [917] = {.lex_state = 33}, [918] = {.lex_state = 30}, - [919] = {.lex_state = 30}, - [920] = {.lex_state = 30}, + [919] = {.lex_state = 33}, + [920] = {.lex_state = 33}, [921] = {.lex_state = 30}, - [922] = {.lex_state = 30}, + [922] = {.lex_state = 33}, [923] = {.lex_state = 30}, [924] = {.lex_state = 30}, [925] = {.lex_state = 30}, [926] = {.lex_state = 30}, [927] = {.lex_state = 30}, [928] = {.lex_state = 30}, - [929] = {.lex_state = 33}, + [929] = {.lex_state = 30}, [930] = {.lex_state = 30}, - [931] = {.lex_state = 30}, + [931] = {.lex_state = 33}, [932] = {.lex_state = 30}, [933] = {.lex_state = 30}, - [934] = {.lex_state = 33}, + [934] = {.lex_state = 30}, [935] = {.lex_state = 33}, [936] = {.lex_state = 30}, [937] = {.lex_state = 33}, - [938] = {.lex_state = 33}, - [939] = {.lex_state = 30}, + [938] = {.lex_state = 30}, + [939] = {.lex_state = 33}, [940] = {.lex_state = 33}, - [941] = {.lex_state = 30}, - [942] = {.lex_state = 30}, - [943] = {.lex_state = 33}, - [944] = {.lex_state = 19}, - [945] = {.lex_state = 19}, - [946] = {.lex_state = 19}, - [947] = {.lex_state = 19}, - [948] = {.lex_state = 19}, - [949] = {.lex_state = 19}, - [950] = {.lex_state = 19}, - [951] = {.lex_state = 19}, + [941] = {.lex_state = 33}, + [942] = {.lex_state = 33}, + [943] = {.lex_state = 30}, + [944] = {.lex_state = 30}, + [945] = {.lex_state = 33}, + [946] = {.lex_state = 33}, + [947] = {.lex_state = 33}, + [948] = {.lex_state = 33}, + [949] = {.lex_state = 33}, + [950] = {.lex_state = 33}, + [951] = {.lex_state = 33}, [952] = {.lex_state = 19}, - [953] = {.lex_state = 33}, - [954] = {.lex_state = 19}, - [955] = {.lex_state = 33}, + [953] = {.lex_state = 19}, + [954] = {.lex_state = 33}, + [955] = {.lex_state = 19}, [956] = {.lex_state = 19}, [957] = {.lex_state = 19}, [958] = {.lex_state = 19}, [959] = {.lex_state = 19}, [960] = {.lex_state = 19}, [961] = {.lex_state = 19}, - [962] = {.lex_state = 33}, + [962] = {.lex_state = 19}, [963] = {.lex_state = 19}, [964] = {.lex_state = 19}, [965] = {.lex_state = 19}, - [966] = {.lex_state = 19}, + [966] = {.lex_state = 33}, [967] = {.lex_state = 19}, [968] = {.lex_state = 19}, [969] = {.lex_state = 19}, @@ -6341,14 +6348,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [972] = {.lex_state = 19}, [973] = {.lex_state = 19}, [974] = {.lex_state = 19}, - [975] = {.lex_state = 33}, - [976] = {.lex_state = 33}, - [977] = {.lex_state = 33}, - [978] = {.lex_state = 33}, - [979] = {.lex_state = 33}, + [975] = {.lex_state = 19}, + [976] = {.lex_state = 19}, + [977] = {.lex_state = 19}, + [978] = {.lex_state = 19}, + [979] = {.lex_state = 19}, [980] = {.lex_state = 33}, - [981] = {.lex_state = 33}, - [982] = {.lex_state = 33}, + [981] = {.lex_state = 19}, + [982] = {.lex_state = 19}, [983] = {.lex_state = 33}, [984] = {.lex_state = 33}, [985] = {.lex_state = 33}, @@ -6365,60 +6372,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [996] = {.lex_state = 33}, [997] = {.lex_state = 33}, [998] = {.lex_state = 33}, - [999] = {.lex_state = 83}, + [999] = {.lex_state = 33}, [1000] = {.lex_state = 33}, - [1001] = {.lex_state = 83}, + [1001] = {.lex_state = 33}, [1002] = {.lex_state = 33}, - [1003] = {.lex_state = 83}, + [1003] = {.lex_state = 33}, [1004] = {.lex_state = 33}, [1005] = {.lex_state = 83}, - [1006] = {.lex_state = 33}, + [1006] = {.lex_state = 83}, [1007] = {.lex_state = 33}, - [1008] = {.lex_state = 33}, + [1008] = {.lex_state = 83}, [1009] = {.lex_state = 33}, [1010] = {.lex_state = 33}, [1011] = {.lex_state = 33}, [1012] = {.lex_state = 33}, - [1013] = {.lex_state = 83}, + [1013] = {.lex_state = 33}, [1014] = {.lex_state = 33}, - [1015] = {.lex_state = 33}, + [1015] = {.lex_state = 83}, [1016] = {.lex_state = 33}, [1017] = {.lex_state = 33}, [1018] = {.lex_state = 83}, - [1019] = {.lex_state = 33}, + [1019] = {.lex_state = 83}, [1020] = {.lex_state = 33}, [1021] = {.lex_state = 33}, - [1022] = {.lex_state = 33}, + [1022] = {.lex_state = 83}, [1023] = {.lex_state = 33}, [1024] = {.lex_state = 33}, - [1025] = {.lex_state = 83}, + [1025] = {.lex_state = 33}, [1026] = {.lex_state = 33}, [1027] = {.lex_state = 83}, [1028] = {.lex_state = 33}, - [1029] = {.lex_state = 83}, + [1029] = {.lex_state = 33}, [1030] = {.lex_state = 33}, - [1031] = {.lex_state = 83}, + [1031] = {.lex_state = 33}, [1032] = {.lex_state = 33}, [1033] = {.lex_state = 33}, - [1034] = {.lex_state = 83}, + [1034] = {.lex_state = 33}, [1035] = {.lex_state = 33}, [1036] = {.lex_state = 33}, [1037] = {.lex_state = 83}, [1038] = {.lex_state = 83}, - [1039] = {.lex_state = 83}, - [1040] = {.lex_state = 83}, - [1041] = {.lex_state = 83}, - [1042] = {.lex_state = 83}, - [1043] = {.lex_state = 33}, - [1044] = {.lex_state = 83}, + [1039] = {.lex_state = 33}, + [1040] = {.lex_state = 33}, + [1041] = {.lex_state = 33}, + [1042] = {.lex_state = 33}, + [1043] = {.lex_state = 83}, + [1044] = {.lex_state = 33}, [1045] = {.lex_state = 83}, [1046] = {.lex_state = 33}, [1047] = {.lex_state = 83}, - [1048] = {.lex_state = 33}, - [1049] = {.lex_state = 83}, - [1050] = {.lex_state = 83}, - [1051] = {.lex_state = 35}, - [1052] = {.lex_state = 35}, + [1048] = {.lex_state = 83}, + [1049] = {.lex_state = 33}, + [1050] = {.lex_state = 33}, + [1051] = {.lex_state = 83}, + [1052] = {.lex_state = 83}, [1053] = {.lex_state = 83}, [1054] = {.lex_state = 83}, [1055] = {.lex_state = 83}, @@ -6430,12 +6437,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1061] = {.lex_state = 35}, [1062] = {.lex_state = 83}, [1063] = {.lex_state = 83}, - [1064] = {.lex_state = 35}, + [1064] = {.lex_state = 83}, [1065] = {.lex_state = 83}, [1066] = {.lex_state = 83}, - [1067] = {.lex_state = 83}, - [1068] = {.lex_state = 83}, - [1069] = {.lex_state = 83}, + [1067] = {.lex_state = 35}, + [1068] = {.lex_state = 35}, + [1069] = {.lex_state = 35}, [1070] = {.lex_state = 83}, [1071] = {.lex_state = 83}, [1072] = {.lex_state = 83}, @@ -6471,351 +6478,359 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1102] = {.lex_state = 83}, [1103] = {.lex_state = 83}, [1104] = {.lex_state = 83}, - [1105] = {.lex_state = 28}, + [1105] = {.lex_state = 83}, [1106] = {.lex_state = 83}, [1107] = {.lex_state = 83}, - [1108] = {.lex_state = 33}, - [1109] = {.lex_state = 33}, + [1108] = {.lex_state = 83}, + [1109] = {.lex_state = 83}, [1110] = {.lex_state = 83}, [1111] = {.lex_state = 83}, [1112] = {.lex_state = 83}, - [1113] = {.lex_state = 22}, - [1114] = {.lex_state = 83}, - [1115] = {.lex_state = 22}, - [1116] = {.lex_state = 24}, - [1117] = {.lex_state = 24}, + [1113] = {.lex_state = 83}, + [1114] = {.lex_state = 28}, + [1115] = {.lex_state = 83}, + [1116] = {.lex_state = 33}, + [1117] = {.lex_state = 33}, [1118] = {.lex_state = 83}, - [1119] = {.lex_state = 28}, - [1120] = {.lex_state = 22}, - [1121] = {.lex_state = 22}, + [1119] = {.lex_state = 83}, + [1120] = {.lex_state = 83}, + [1121] = {.lex_state = 83}, [1122] = {.lex_state = 83}, [1123] = {.lex_state = 83}, - [1124] = {.lex_state = 83}, + [1124] = {.lex_state = 22}, [1125] = {.lex_state = 83}, - [1126] = {.lex_state = 22}, - [1127] = {.lex_state = 83}, - [1128] = {.lex_state = 22}, + [1126] = {.lex_state = 83}, + [1127] = {.lex_state = 33}, + [1128] = {.lex_state = 28}, [1129] = {.lex_state = 24}, - [1130] = {.lex_state = 83}, + [1130] = {.lex_state = 24}, [1131] = {.lex_state = 83}, [1132] = {.lex_state = 83}, [1133] = {.lex_state = 83}, - [1134] = {.lex_state = 83}, - [1135] = {.lex_state = 24}, + [1134] = {.lex_state = 24}, + [1135] = {.lex_state = 83}, [1136] = {.lex_state = 83}, - [1137] = {.lex_state = 24}, + [1137] = {.lex_state = 22}, [1138] = {.lex_state = 83}, - [1139] = {.lex_state = 83}, - [1140] = {.lex_state = 24}, - [1141] = {.lex_state = 33}, - [1142] = {.lex_state = 22}, - [1143] = {.lex_state = 83}, - [1144] = {.lex_state = 83}, - [1145] = {.lex_state = 24}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 33}, - [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 19}, - [1153] = {.lex_state = 28}, - [1154] = {.lex_state = 19}, + [1139] = {.lex_state = 22}, + [1140] = {.lex_state = 83}, + [1141] = {.lex_state = 22}, + [1142] = {.lex_state = 83}, + [1143] = {.lex_state = 22}, + [1144] = {.lex_state = 24}, + [1145] = {.lex_state = 22}, + [1146] = {.lex_state = 24}, + [1147] = {.lex_state = 24}, + [1148] = {.lex_state = 83}, + [1149] = {.lex_state = 22}, + [1150] = {.lex_state = 24}, + [1151] = {.lex_state = 83}, + [1152] = {.lex_state = 83}, + [1153] = {.lex_state = 83}, + [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0}, + [1157] = {.lex_state = 33}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 28}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 33}, - [1162] = {.lex_state = 0}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 28}, + [1161] = {.lex_state = 19}, + [1162] = {.lex_state = 19}, [1163] = {.lex_state = 0}, [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, + [1166] = {.lex_state = 28}, [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, + [1169] = {.lex_state = 33}, [1170] = {.lex_state = 0}, [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 28}, + [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 28}, - [1176] = {.lex_state = 19}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, + [1179] = {.lex_state = 28}, [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 83}, - [1182] = {.lex_state = 0}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 28}, [1183] = {.lex_state = 0}, [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 33}, - [1186] = {.lex_state = 28}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 33}, + [1189] = {.lex_state = 83}, [1190] = {.lex_state = 19}, - [1191] = {.lex_state = 28}, + [1191] = {.lex_state = 0}, [1192] = {.lex_state = 33}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 33}, + [1193] = {.lex_state = 19}, + [1194] = {.lex_state = 0}, [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 28}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 0}, - [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 83}, - [1201] = {.lex_state = 0}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 28}, + [1198] = {.lex_state = 33}, + [1199] = {.lex_state = 28}, + [1200] = {.lex_state = 33}, + [1201] = {.lex_state = 28}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, + [1203] = {.lex_state = 33}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, + [1205] = {.lex_state = 83}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 83}, - [1209] = {.lex_state = 23}, - [1210] = {.lex_state = 23}, - [1211] = {.lex_state = 83}, - [1212] = {.lex_state = 33}, - [1213] = {.lex_state = 23}, - [1214] = {.lex_state = 33}, - [1215] = {.lex_state = 83}, - [1216] = {.lex_state = 83}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 25}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 33}, + [1217] = {.lex_state = 83}, + [1218] = {.lex_state = 25}, [1219] = {.lex_state = 83}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 23}, - [1222] = {.lex_state = 28}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 0}, + [1221] = {.lex_state = 25}, + [1222] = {.lex_state = 83}, + [1223] = {.lex_state = 83}, + [1224] = {.lex_state = 83}, [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 23}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 23}, - [1229] = {.lex_state = 33}, - [1230] = {.lex_state = 23}, - [1231] = {.lex_state = 23}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 28}, + [1228] = {.lex_state = 25}, + [1229] = {.lex_state = 25}, + [1230] = {.lex_state = 33}, + [1231] = {.lex_state = 83}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 83}, - [1234] = {.lex_state = 23}, - [1235] = {.lex_state = 23}, - [1236] = {.lex_state = 23}, - [1237] = {.lex_state = 83}, + [1233] = {.lex_state = 25}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 25}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 0}, [1238] = {.lex_state = 83}, - [1239] = {.lex_state = 83}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 28}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 83}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 25}, + [1241] = {.lex_state = 25}, + [1242] = {.lex_state = 26}, + [1243] = {.lex_state = 25}, [1244] = {.lex_state = 33}, - [1245] = {.lex_state = 83}, - [1246] = {.lex_state = 33}, + [1245] = {.lex_state = 25}, + [1246] = {.lex_state = 83}, [1247] = {.lex_state = 83}, - [1248] = {.lex_state = 26}, - [1249] = {.lex_state = 33}, - [1250] = {.lex_state = 26}, - [1251] = {.lex_state = 23}, - [1252] = {.lex_state = 28}, - [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 23}, - [1255] = {.lex_state = 83}, - [1256] = {.lex_state = 23}, - [1257] = {.lex_state = 23}, - [1258] = {.lex_state = 83}, - [1259] = {.lex_state = 23}, - [1260] = {.lex_state = 83}, - [1261] = {.lex_state = 83}, - [1262] = {.lex_state = 33}, - [1263] = {.lex_state = 33}, + [1248] = {.lex_state = 83}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 28}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 83}, + [1253] = {.lex_state = 33}, + [1254] = {.lex_state = 83}, + [1255] = {.lex_state = 33}, + [1256] = {.lex_state = 83}, + [1257] = {.lex_state = 26}, + [1258] = {.lex_state = 33}, + [1259] = {.lex_state = 26}, + [1260] = {.lex_state = 25}, + [1261] = {.lex_state = 28}, + [1262] = {.lex_state = 25}, + [1263] = {.lex_state = 25}, [1264] = {.lex_state = 83}, - [1265] = {.lex_state = 83}, - [1266] = {.lex_state = 26}, - [1267] = {.lex_state = 19}, - [1268] = {.lex_state = 27}, + [1265] = {.lex_state = 25}, + [1266] = {.lex_state = 25}, + [1267] = {.lex_state = 83}, + [1268] = {.lex_state = 25}, [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 27}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 33}, + [1270] = {.lex_state = 83}, + [1271] = {.lex_state = 33}, + [1272] = {.lex_state = 33}, + [1273] = {.lex_state = 83}, + [1274] = {.lex_state = 83}, + [1275] = {.lex_state = 19}, + [1276] = {.lex_state = 0}, [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 27}, + [1278] = {.lex_state = 27}, + [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, [1281] = {.lex_state = 0}, [1282] = {.lex_state = 19}, - [1283] = {.lex_state = 19}, - [1284] = {.lex_state = 19}, - [1285] = {.lex_state = 19}, - [1286] = {.lex_state = 19}, - [1287] = {.lex_state = 27}, - [1288] = {.lex_state = 27}, - [1289] = {.lex_state = 19}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 33}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 0}, [1290] = {.lex_state = 19}, - [1291] = {.lex_state = 27}, + [1291] = {.lex_state = 19}, [1292] = {.lex_state = 19}, - [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 19}, - [1296] = {.lex_state = 19}, - [1297] = {.lex_state = 0}, + [1293] = {.lex_state = 27}, + [1294] = {.lex_state = 19}, + [1295] = {.lex_state = 27}, + [1296] = {.lex_state = 27}, + [1297] = {.lex_state = 19}, [1298] = {.lex_state = 19}, [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 33}, - [1301] = {.lex_state = 33}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 83}, - [1304] = {.lex_state = 27}, - [1305] = {.lex_state = 19}, + [1300] = {.lex_state = 19}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 83}, + [1303] = {.lex_state = 19}, + [1304] = {.lex_state = 19}, + [1305] = {.lex_state = 0}, [1306] = {.lex_state = 19}, - [1307] = {.lex_state = 33}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 27}, + [1307] = {.lex_state = 19}, + [1308] = {.lex_state = 33}, + [1309] = {.lex_state = 33}, + [1310] = {.lex_state = 19}, [1311] = {.lex_state = 27}, [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, + [1315] = {.lex_state = 33}, [1316] = {.lex_state = 27}, - [1317] = {.lex_state = 27}, - [1318] = {.lex_state = 27}, - [1319] = {.lex_state = 0}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 27}, [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 27}, + [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, + [1323] = {.lex_state = 27}, + [1324] = {.lex_state = 27}, + [1325] = {.lex_state = 27}, + [1326] = {.lex_state = 27}, [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 27}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 27}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 27}, + [1330] = {.lex_state = 0}, [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 33}, + [1332] = {.lex_state = 0}, [1333] = {.lex_state = 27}, [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 33}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 27}, + [1335] = {.lex_state = 0}, + [1336] = {.lex_state = 27}, + [1337] = {.lex_state = 0}, [1338] = {.lex_state = 27}, [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 0}, + [1340] = {.lex_state = 33}, [1341] = {.lex_state = 27}, [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 27}, - [1344] = {.lex_state = 27}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 19}, - [1347] = {.lex_state = 27}, - [1348] = {.lex_state = 27}, - [1349] = {.lex_state = 19}, - [1350] = {.lex_state = 27}, - [1351] = {.lex_state = 33}, - [1352] = {.lex_state = 0}, + [1343] = {.lex_state = 33}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 27}, + [1346] = {.lex_state = 27}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 0}, + [1349] = {.lex_state = 27}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 27}, + [1352] = {.lex_state = 27}, [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, + [1354] = {.lex_state = 19}, + [1355] = {.lex_state = 27}, + [1356] = {.lex_state = 27}, + [1357] = {.lex_state = 19}, + [1358] = {.lex_state = 27}, [1359] = {.lex_state = 33}, - [1360] = {.lex_state = 19}, - [1361] = {.lex_state = 33}, - [1362] = {.lex_state = 33}, - [1363] = {.lex_state = 19}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 83}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 33}, - [1369] = {.lex_state = 19}, - [1370] = {.lex_state = 0}, + [1367] = {.lex_state = 33}, + [1368] = {.lex_state = 19}, + [1369] = {.lex_state = 33}, + [1370] = {.lex_state = 33}, [1371] = {.lex_state = 19}, [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 33}, + [1373] = {.lex_state = 83}, [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 33}, + [1376] = {.lex_state = 33}, + [1377] = {.lex_state = 19}, [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, + [1379] = {.lex_state = 19}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 19}, - [1382] = {.lex_state = 83}, - [1383] = {.lex_state = 27}, - [1384] = {.lex_state = 33}, - [1385] = {.lex_state = 19}, - [1386] = {.lex_state = 19}, - [1387] = {.lex_state = 33}, - [1388] = {.lex_state = 33}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 33}, + [1381] = {.lex_state = 33}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 33}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 19}, + [1390] = {.lex_state = 83}, + [1391] = {.lex_state = 27}, [1392] = {.lex_state = 33}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 19}, + [1393] = {.lex_state = 19}, + [1394] = {.lex_state = 19}, + [1395] = {.lex_state = 33}, + [1396] = {.lex_state = 33}, [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 33}, - [1402] = {.lex_state = 27}, - [1403] = {.lex_state = 27}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 33}, - [1406] = {.lex_state = 33}, - [1407] = {.lex_state = 33}, + [1399] = {.lex_state = 33}, + [1400] = {.lex_state = 33}, + [1401] = {.lex_state = 0}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 19}, + [1405] = {.lex_state = 0}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, [1409] = {.lex_state = 33}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 0}, + [1410] = {.lex_state = 27}, + [1411] = {.lex_state = 27}, [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 19}, + [1413] = {.lex_state = 33}, + [1414] = {.lex_state = 33}, + [1415] = {.lex_state = 33}, [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 27}, - [1418] = {.lex_state = 33}, + [1417] = {.lex_state = 33}, + [1418] = {.lex_state = 0}, [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 27}, - [1421] = {.lex_state = 19}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 0}, + [1423] = {.lex_state = 19}, [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 19}, - [1426] = {.lex_state = 27}, - [1427] = {.lex_state = 33}, - [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 33}, + [1425] = {.lex_state = 27}, + [1426] = {.lex_state = 33}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 27}, + [1429] = {.lex_state = 19}, [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 83}, + [1431] = {.lex_state = 0}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 83}, - [1435] = {.lex_state = 0}, + [1433] = {.lex_state = 19}, + [1434] = {.lex_state = 27}, + [1435] = {.lex_state = 33}, [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 33}, - [1439] = {.lex_state = 0}, + [1437] = {.lex_state = 33}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 83}, [1440] = {.lex_state = 0}, [1441] = {.lex_state = 0}, [1442] = {.lex_state = 83}, - [1443] = {.lex_state = 27}, - [1444] = {.lex_state = 83}, - [1445] = {.lex_state = 83}, - [1446] = {.lex_state = 27}, - [1447] = {.lex_state = 83}, - [1448] = {.lex_state = 33}, - [1449] = {.lex_state = 83}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 33}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 83}, + [1451] = {.lex_state = 27}, + [1452] = {.lex_state = 83}, + [1453] = {.lex_state = 83}, + [1454] = {.lex_state = 27}, + [1455] = {.lex_state = 83}, + [1456] = {.lex_state = 33}, + [1457] = {.lex_state = 83}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6943,68 +6958,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1424), - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1000), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(639), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(844), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [sym_translation_unit] = STATE(1432), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1014), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(649), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -7080,32 +7095,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { + [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(1333), + [sym_preproc_elif] = STATE(1333), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_case_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_goto_statement] = STATE(7), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(91), + [aux_sym_preproc_include_token1] = ACTIONS(93), + [aux_sym_preproc_def_token1] = ACTIONS(95), + [aux_sym_preproc_if_token1] = ACTIONS(97), + [aux_sym_preproc_if_token2] = ACTIONS(99), + [aux_sym_preproc_ifdef_token1] = ACTIONS(101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(101), + [aux_sym_preproc_else_token1] = ACTIONS(103), + [aux_sym_preproc_elif_token1] = ACTIONS(105), + [sym_preproc_directive] = ACTIONS(107), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_typedef] = ACTIONS(111), + [anon_sym_extern] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [3] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1446), - [sym_preproc_elif] = STATE(1446), + [sym_preproc_else] = STATE(1296), + [sym_preproc_elif] = STATE(1296), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -7119,35 +7274,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), + [sym_macro_type_specifier] = STATE(874), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(99), + [aux_sym_preproc_if_token2] = ACTIONS(139), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7219,75 +7374,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [3] = { - [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(1348), - [sym_preproc_elif] = STATE(1348), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_case_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_goto_statement] = STATE(19), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [4] = { + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), + [sym_preproc_else] = STATE(1293), + [sym_preproc_elif] = STATE(1293), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_case_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(139), + [aux_sym_preproc_if_token2] = ACTIONS(141), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7359,75 +7514,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [4] = { - [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(1383), - [sym_preproc_elif] = STATE(1383), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [5] = { + [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(1391), + [sym_preproc_elif] = STATE(1391), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(8), + [sym_labeled_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_case_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_goto_statement] = STATE(8), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(141), + [aux_sym_preproc_if_token2] = ACTIONS(143), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7499,75 +7654,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [5] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1304), - [sym_preproc_elif] = STATE(1304), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [6] = { + [sym_preproc_include] = STATE(3), + [sym_preproc_def] = STATE(3), + [sym_preproc_function_def] = STATE(3), + [sym_preproc_call] = STATE(3), + [sym_preproc_if] = STATE(3), + [sym_preproc_ifdef] = STATE(3), + [sym_preproc_else] = STATE(1316), + [sym_preproc_elif] = STATE(1316), + [sym_function_definition] = STATE(3), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(3), + [sym_labeled_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_if_statement] = STATE(3), + [sym_switch_statement] = STATE(3), + [sym_case_statement] = STATE(3), + [sym_while_statement] = STATE(3), + [sym_do_statement] = STATE(3), + [sym_for_statement] = STATE(3), + [sym_return_statement] = STATE(3), + [sym_break_statement] = STATE(3), + [sym_continue_statement] = STATE(3), + [sym_goto_statement] = STATE(3), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(143), + [aux_sym_preproc_if_token2] = ACTIONS(145), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7639,33 +7794,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [6] = { + [7] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1333), - [sym_preproc_elif] = STATE(1333), + [sym_preproc_else] = STATE(1341), + [sym_preproc_elif] = STATE(1341), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -7679,35 +7834,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), + [sym_macro_type_specifier] = STATE(874), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(145), + [aux_sym_preproc_if_token2] = ACTIONS(147), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7779,215 +7934,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [7] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1268), - [sym_preproc_elif] = STATE(1268), - [sym_function_definition] = STATE(16), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [8] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1351), + [sym_preproc_elif] = STATE(1351), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(101), - [aux_sym_preproc_else_token1] = ACTIONS(103), - [aux_sym_preproc_elif_token1] = ACTIONS(105), - [sym_preproc_directive] = ACTIONS(107), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_typedef] = ACTIONS(111), - [anon_sym_extern] = ACTIONS(113), - [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(115), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [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(1271), - [sym_preproc_elif] = STATE(1271), - [sym_function_definition] = STATE(6), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_case_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_goto_statement] = STATE(6), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(91), - [aux_sym_preproc_include_token1] = ACTIONS(93), - [aux_sym_preproc_def_token1] = ACTIONS(95), - [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(149), + [aux_sym_preproc_if_token2] = ACTIONS(149), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -8060,69 +8075,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [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(1402), - [sym_preproc_elif] = STATE(1402), - [sym_function_definition] = STATE(2), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1311), + [sym_preproc_elif] = STATE(1311), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8200,69 +8215,69 @@ 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(1344), - [sym_preproc_elif] = STATE(1344), - [sym_function_definition] = STATE(14), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1329), + [sym_preproc_elif] = STATE(1329), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8340,69 +8355,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1330), - [sym_preproc_elif] = STATE(1330), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [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(1346), + [sym_preproc_elif] = STATE(1346), + [sym_function_definition] = STATE(13), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_case_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_goto_statement] = STATE(13), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8480,69 +8495,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [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(1426), - [sym_preproc_elif] = STATE(1426), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_case_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_goto_statement] = STATE(17), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [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(1356), + [sym_preproc_elif] = STATE(1356), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8626,26 +8641,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1343), - [sym_preproc_elif] = STATE(1343), + [sym_preproc_else] = STATE(1338), + [sym_preproc_elif] = STATE(1338), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8659,30 +8674,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), + [sym_macro_type_specifier] = STATE(874), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8766,26 +8781,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1311), - [sym_preproc_elif] = STATE(1311), + [sym_preproc_else] = STATE(1345), + [sym_preproc_elif] = STATE(1345), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8799,30 +8814,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), + [sym_macro_type_specifier] = STATE(874), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8900,69 +8915,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_call] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1287), - [sym_preproc_elif] = STATE(1287), - [sym_function_definition] = STATE(5), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(5), - [sym_labeled_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_case_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_goto_statement] = STATE(5), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1454), + [sym_preproc_elif] = STATE(1454), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9040,69 +9055,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1291), - [sym_preproc_elif] = STATE(1291), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [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(1352), + [sym_preproc_elif] = STATE(1352), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9180,69 +9195,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [17] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1321), - [sym_preproc_elif] = STATE(1321), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [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(1434), + [sym_preproc_elif] = STATE(1434), + [sym_function_definition] = STATE(10), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(10), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(10), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9320,69 +9335,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [sym_preproc_include] = STATE(11), - [sym_preproc_def] = STATE(11), - [sym_preproc_function_def] = STATE(11), - [sym_preproc_call] = STATE(11), - [sym_preproc_if] = STATE(11), - [sym_preproc_ifdef] = STATE(11), - [sym_preproc_else] = STATE(1338), - [sym_preproc_elif] = STATE(1338), - [sym_function_definition] = STATE(11), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_case_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_goto_statement] = STATE(11), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [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(1410), + [sym_preproc_elif] = STATE(1410), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9466,26 +9481,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1337), - [sym_preproc_elif] = STATE(1337), + [sym_preproc_else] = STATE(1319), + [sym_preproc_elif] = STATE(1319), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -9499,30 +9514,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), + [sym_macro_type_specifier] = STATE(874), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9609,21 +9624,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(997), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1016), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(641), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(646), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(841), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(851), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -9637,30 +9652,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(865), + [sym_macro_type_specifier] = STATE(874), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(176), [aux_sym_preproc_def_token1] = ACTIONS(179), @@ -9738,211 +9753,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1006), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(842), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(231), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(304), - [aux_sym_preproc_def_token1] = ACTIONS(307), - [aux_sym_preproc_if_token1] = ACTIONS(310), - [aux_sym_preproc_if_token2] = ACTIONS(185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(313), - [sym_preproc_directive] = ACTIONS(316), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym_typedef] = ACTIONS(322), - [anon_sym_extern] = ACTIONS(325), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(217), - [anon_sym___declspec] = ACTIONS(220), - [anon_sym___cdecl] = ACTIONS(223), - [anon_sym___clrcall] = ACTIONS(223), - [anon_sym___stdcall] = ACTIONS(223), - [anon_sym___fastcall] = ACTIONS(223), - [anon_sym___thiscall] = ACTIONS(223), - [anon_sym___vectorcall] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(232), - [anon_sym_volatile] = ACTIONS(232), - [anon_sym_restrict] = ACTIONS(232), - [anon_sym__Atomic] = ACTIONS(232), - [anon_sym_signed] = ACTIONS(235), - [anon_sym_unsigned] = ACTIONS(235), - [anon_sym_long] = ACTIONS(235), - [anon_sym_short] = ACTIONS(235), - [sym_primitive_type] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(241), - [anon_sym_struct] = ACTIONS(244), - [anon_sym_union] = ACTIONS(247), - [anon_sym_if] = ACTIONS(331), - [anon_sym_switch] = ACTIONS(334), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(340), - [anon_sym_while] = ACTIONS(343), - [anon_sym_do] = ACTIONS(346), - [anon_sym_for] = ACTIONS(349), - [anon_sym_return] = ACTIONS(352), - [anon_sym_break] = ACTIONS(355), - [anon_sym_continue] = ACTIONS(358), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_DASH_DASH] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_sizeof] = ACTIONS(286), - [sym_number_literal] = ACTIONS(289), - [anon_sym_L_SQUOTE] = ACTIONS(292), - [anon_sym_u_SQUOTE] = ACTIONS(292), - [anon_sym_U_SQUOTE] = ACTIONS(292), - [anon_sym_u8_SQUOTE] = ACTIONS(292), - [anon_sym_SQUOTE] = ACTIONS(292), - [anon_sym_L_DQUOTE] = ACTIONS(295), - [anon_sym_u_DQUOTE] = ACTIONS(295), - [anon_sym_U_DQUOTE] = ACTIONS(295), - [anon_sym_u8_DQUOTE] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_true] = ACTIONS(298), - [sym_false] = ACTIONS(298), - [sym_null] = ACTIONS(298), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), + [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(319), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [22] = { - [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_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1006), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(842), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(231), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(364), - [aux_sym_preproc_include_token1] = ACTIONS(366), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [aux_sym_preproc_if_token1] = ACTIONS(370), - [aux_sym_preproc_if_token2] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -9950,9 +9964,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(378), - [anon_sym_typedef] = ACTIONS(380), - [anon_sym_extern] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -9962,7 +9976,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(384), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -9979,17 +9994,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10010,75 +10025,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1006), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(842), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(231), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(364), - [aux_sym_preproc_include_token1] = ACTIONS(366), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [aux_sym_preproc_if_token1] = ACTIONS(370), - [aux_sym_preproc_if_token2] = ACTIONS(408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10086,9 +10100,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(378), - [anon_sym_typedef] = ACTIONS(380), - [anon_sym_extern] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10098,7 +10112,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(384), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(347), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10115,17 +10130,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10155,21 +10170,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(31), [sym_declaration] = STATE(31), [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), [sym_attributed_statement] = STATE(31), [sym_labeled_statement] = STATE(31), [sym_expression_statement] = STATE(31), @@ -10183,37 +10198,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(31), [sym_continue_statement] = STATE(31), [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(865), + [sym_macro_type_specifier] = STATE(874), [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10221,9 +10236,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10233,8 +10248,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(428), - [anon_sym_RBRACE] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(349), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10251,17 +10266,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10282,74 +10297,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [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_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [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__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10357,9 +10372,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10369,8 +10384,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(428), - [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10387,17 +10402,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10427,21 +10442,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(39), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1009), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(645), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(850), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -10455,37 +10470,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(39), [sym_continue_statement] = STATE(39), [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(865), + [sym_macro_type_specifier] = STATE(874), [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(246), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(353), + [aux_sym_preproc_include_token1] = ACTIONS(355), + [aux_sym_preproc_def_token1] = ACTIONS(357), + [aux_sym_preproc_if_token1] = ACTIONS(359), + [aux_sym_preproc_if_token2] = ACTIONS(361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(363), + [aux_sym_preproc_ifdef_token2] = ACTIONS(363), + [sym_preproc_directive] = ACTIONS(365), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10493,9 +10509,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_typedef] = ACTIONS(369), + [anon_sym_extern] = ACTIONS(371), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10505,8 +10521,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(428), - [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(373), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10523,17 +10538,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10554,210 +10569,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [27] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1000), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(639), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(844), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(458), - [sym_identifier] = ACTIONS(460), - [aux_sym_preproc_include_token1] = ACTIONS(463), - [aux_sym_preproc_def_token1] = ACTIONS(466), - [aux_sym_preproc_if_token1] = ACTIONS(469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(472), - [sym_preproc_directive] = ACTIONS(475), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_typedef] = ACTIONS(481), - [anon_sym_extern] = ACTIONS(484), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(217), - [anon_sym___declspec] = ACTIONS(220), - [anon_sym___cdecl] = ACTIONS(223), - [anon_sym___clrcall] = ACTIONS(223), - [anon_sym___stdcall] = ACTIONS(223), - [anon_sym___fastcall] = ACTIONS(223), - [anon_sym___thiscall] = ACTIONS(223), - [anon_sym___vectorcall] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(487), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(232), - [anon_sym_volatile] = ACTIONS(232), - [anon_sym_restrict] = ACTIONS(232), - [anon_sym__Atomic] = ACTIONS(232), - [anon_sym_signed] = ACTIONS(235), - [anon_sym_unsigned] = ACTIONS(235), - [anon_sym_long] = ACTIONS(235), - [anon_sym_short] = ACTIONS(235), - [sym_primitive_type] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(241), - [anon_sym_struct] = ACTIONS(244), - [anon_sym_union] = ACTIONS(247), - [anon_sym_if] = ACTIONS(490), - [anon_sym_switch] = ACTIONS(493), - [anon_sym_case] = ACTIONS(496), - [anon_sym_default] = ACTIONS(499), - [anon_sym_while] = ACTIONS(502), - [anon_sym_do] = ACTIONS(505), - [anon_sym_for] = ACTIONS(508), - [anon_sym_return] = ACTIONS(511), - [anon_sym_break] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_goto] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_sizeof] = ACTIONS(286), - [sym_number_literal] = ACTIONS(289), - [anon_sym_L_SQUOTE] = ACTIONS(292), - [anon_sym_u_SQUOTE] = ACTIONS(292), - [anon_sym_U_SQUOTE] = ACTIONS(292), - [anon_sym_u8_SQUOTE] = ACTIONS(292), - [anon_sym_SQUOTE] = ACTIONS(292), - [anon_sym_L_DQUOTE] = ACTIONS(295), - [anon_sym_u_DQUOTE] = ACTIONS(295), - [anon_sym_U_DQUOTE] = ACTIONS(295), - [anon_sym_u8_DQUOTE] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_true] = ACTIONS(298), - [sym_false] = ACTIONS(298), - [sym_null] = ACTIONS(298), - [sym_comment] = ACTIONS(3), - }, - [28] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10765,9 +10644,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10777,8 +10656,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(428), - [anon_sym_RBRACE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10795,17 +10674,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10825,75 +10704,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [29] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [28] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10901,9 +10780,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10913,8 +10792,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(428), - [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10931,17 +10810,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10961,75 +10840,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [30] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [29] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11037,9 +10916,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11049,8 +10928,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(428), - [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11067,17 +10946,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11097,211 +10976,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [31] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(529), - [aux_sym_preproc_include_token1] = ACTIONS(532), - [aux_sym_preproc_def_token1] = ACTIONS(535), - [aux_sym_preproc_if_token1] = ACTIONS(538), - [aux_sym_preproc_ifdef_token1] = ACTIONS(541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(541), - [sym_preproc_directive] = ACTIONS(544), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(550), - [anon_sym_extern] = ACTIONS(553), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(217), - [anon_sym___declspec] = ACTIONS(220), - [anon_sym___cdecl] = ACTIONS(223), - [anon_sym___clrcall] = ACTIONS(223), - [anon_sym___stdcall] = ACTIONS(223), - [anon_sym___fastcall] = ACTIONS(223), - [anon_sym___thiscall] = ACTIONS(223), - [anon_sym___vectorcall] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(232), - [anon_sym_volatile] = ACTIONS(232), - [anon_sym_restrict] = ACTIONS(232), - [anon_sym__Atomic] = ACTIONS(232), - [anon_sym_signed] = ACTIONS(235), - [anon_sym_unsigned] = ACTIONS(235), - [anon_sym_long] = ACTIONS(235), - [anon_sym_short] = ACTIONS(235), - [sym_primitive_type] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(241), - [anon_sym_struct] = ACTIONS(244), - [anon_sym_union] = ACTIONS(247), - [anon_sym_if] = ACTIONS(559), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_case] = ACTIONS(565), - [anon_sym_default] = ACTIONS(568), - [anon_sym_while] = ACTIONS(571), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(577), - [anon_sym_return] = ACTIONS(580), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_sizeof] = ACTIONS(286), - [sym_number_literal] = ACTIONS(289), - [anon_sym_L_SQUOTE] = ACTIONS(292), - [anon_sym_u_SQUOTE] = ACTIONS(292), - [anon_sym_U_SQUOTE] = ACTIONS(292), - [anon_sym_u8_SQUOTE] = ACTIONS(292), - [anon_sym_SQUOTE] = ACTIONS(292), - [anon_sym_L_DQUOTE] = ACTIONS(295), - [anon_sym_u_DQUOTE] = ACTIONS(295), - [anon_sym_U_DQUOTE] = ACTIONS(295), - [anon_sym_u8_DQUOTE] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_true] = ACTIONS(298), - [sym_false] = ACTIONS(298), - [sym_null] = ACTIONS(298), - [sym_comment] = ACTIONS(3), - }, - [32] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [30] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11309,9 +11052,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11321,8 +11064,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(428), - [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11339,17 +11082,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11369,75 +11112,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(42), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_case_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [31] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11445,9 +11188,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11457,8 +11200,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(428), - [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(405), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11475,17 +11218,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11505,75 +11248,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [32] = { + [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_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11581,9 +11324,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11593,8 +11336,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(428), - [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11611,17 +11354,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11641,75 +11384,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [35] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [33] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11717,9 +11460,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11729,8 +11472,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(428), - [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11747,17 +11490,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11777,76 +11520,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1000), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(639), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(844), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [34] = { + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11854,9 +11596,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(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11866,7 +11608,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(41), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11883,17 +11626,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(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_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11913,211 +11656,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [37] = { - [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_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [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__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), - [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(428), - [anon_sym_RBRACE] = ACTIONS(602), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [35] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12125,9 +11732,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12137,8 +11744,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(428), - [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12155,17 +11762,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12185,75 +11792,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [36] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(415), + [aux_sym_preproc_include_token1] = ACTIONS(418), + [aux_sym_preproc_def_token1] = ACTIONS(421), + [aux_sym_preproc_if_token1] = ACTIONS(424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(427), + [aux_sym_preproc_ifdef_token2] = ACTIONS(427), + [sym_preproc_directive] = ACTIONS(430), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(433), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(439), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(217), + [anon_sym___declspec] = ACTIONS(220), + [anon_sym___cdecl] = ACTIONS(223), + [anon_sym___clrcall] = ACTIONS(223), + [anon_sym___stdcall] = ACTIONS(223), + [anon_sym___fastcall] = ACTIONS(223), + [anon_sym___thiscall] = ACTIONS(223), + [anon_sym___vectorcall] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(232), + [anon_sym_volatile] = ACTIONS(232), + [anon_sym_restrict] = ACTIONS(232), + [anon_sym__Atomic] = ACTIONS(232), + [anon_sym_signed] = ACTIONS(235), + [anon_sym_unsigned] = ACTIONS(235), + [anon_sym_long] = ACTIONS(235), + [anon_sym_short] = ACTIONS(235), + [sym_primitive_type] = ACTIONS(238), + [anon_sym_enum] = ACTIONS(241), + [anon_sym_struct] = ACTIONS(244), + [anon_sym_union] = ACTIONS(247), + [anon_sym_if] = ACTIONS(447), + [anon_sym_switch] = ACTIONS(450), + [anon_sym_case] = ACTIONS(453), + [anon_sym_default] = ACTIONS(456), + [anon_sym_while] = ACTIONS(459), + [anon_sym_do] = ACTIONS(462), + [anon_sym_for] = ACTIONS(465), + [anon_sym_return] = ACTIONS(468), + [anon_sym_break] = ACTIONS(471), + [anon_sym_continue] = ACTIONS(474), + [anon_sym_goto] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_sizeof] = ACTIONS(286), + [sym_number_literal] = ACTIONS(289), + [anon_sym_L_SQUOTE] = ACTIONS(292), + [anon_sym_u_SQUOTE] = ACTIONS(292), + [anon_sym_U_SQUOTE] = ACTIONS(292), + [anon_sym_u8_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_L_DQUOTE] = ACTIONS(295), + [anon_sym_u_DQUOTE] = ACTIONS(295), + [anon_sym_U_DQUOTE] = ACTIONS(295), + [anon_sym_u8_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_true] = ACTIONS(298), + [sym_false] = ACTIONS(298), + [sym_null] = ACTIONS(298), + [sym_comment] = ACTIONS(3), + }, + [37] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12261,9 +12004,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12273,8 +12016,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(428), - [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(480), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12291,17 +12034,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12321,7 +12064,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [40] = { + [38] = { + [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_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1009), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(850), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [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__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(246), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(482), + [aux_sym_preproc_include_token1] = ACTIONS(485), + [aux_sym_preproc_def_token1] = ACTIONS(488), + [aux_sym_preproc_if_token1] = ACTIONS(491), + [aux_sym_preproc_if_token2] = ACTIONS(185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(494), + [sym_preproc_directive] = ACTIONS(497), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(500), + [anon_sym_typedef] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(506), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(217), + [anon_sym___declspec] = ACTIONS(220), + [anon_sym___cdecl] = ACTIONS(223), + [anon_sym___clrcall] = ACTIONS(223), + [anon_sym___stdcall] = ACTIONS(223), + [anon_sym___fastcall] = ACTIONS(223), + [anon_sym___thiscall] = ACTIONS(223), + [anon_sym___vectorcall] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(232), + [anon_sym_volatile] = ACTIONS(232), + [anon_sym_restrict] = ACTIONS(232), + [anon_sym__Atomic] = ACTIONS(232), + [anon_sym_signed] = ACTIONS(235), + [anon_sym_unsigned] = ACTIONS(235), + [anon_sym_long] = ACTIONS(235), + [anon_sym_short] = ACTIONS(235), + [sym_primitive_type] = ACTIONS(238), + [anon_sym_enum] = ACTIONS(241), + [anon_sym_struct] = ACTIONS(244), + [anon_sym_union] = ACTIONS(247), + [anon_sym_if] = ACTIONS(512), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(518), + [anon_sym_default] = ACTIONS(521), + [anon_sym_while] = ACTIONS(524), + [anon_sym_do] = ACTIONS(527), + [anon_sym_for] = ACTIONS(530), + [anon_sym_return] = ACTIONS(533), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(539), + [anon_sym_goto] = ACTIONS(542), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_sizeof] = ACTIONS(286), + [sym_number_literal] = ACTIONS(289), + [anon_sym_L_SQUOTE] = ACTIONS(292), + [anon_sym_u_SQUOTE] = ACTIONS(292), + [anon_sym_U_SQUOTE] = ACTIONS(292), + [anon_sym_u8_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_L_DQUOTE] = ACTIONS(295), + [anon_sym_u_DQUOTE] = ACTIONS(295), + [anon_sym_U_DQUOTE] = ACTIONS(295), + [anon_sym_u8_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_true] = ACTIONS(298), + [sym_false] = ACTIONS(298), + [sym_null] = ACTIONS(298), + [sym_comment] = ACTIONS(3), + }, + [39] = { [sym_preproc_include] = STATE(38), [sym_preproc_def] = STATE(38), [sym_preproc_function_def] = STATE(38), @@ -12331,21 +12210,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(38), [sym_declaration] = STATE(38), [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1009), [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(645), [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(850), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), [sym_attributed_statement] = STATE(38), [sym_labeled_statement] = STATE(38), [sym_expression_statement] = STATE(38), @@ -12359,37 +12238,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(38), [sym_continue_statement] = STATE(38), [sym_goto_statement] = STATE(38), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(865), + [sym_macro_type_specifier] = STATE(874), [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(246), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(353), + [aux_sym_preproc_include_token1] = ACTIONS(355), + [aux_sym_preproc_def_token1] = ACTIONS(357), + [aux_sym_preproc_if_token1] = ACTIONS(359), + [aux_sym_preproc_if_token2] = ACTIONS(545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(363), + [aux_sym_preproc_ifdef_token2] = ACTIONS(363), + [sym_preproc_directive] = ACTIONS(365), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12397,9 +12277,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_typedef] = ACTIONS(369), + [anon_sym_extern] = ACTIONS(371), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12409,8 +12289,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(428), - [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(373), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12427,17 +12306,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12457,75 +12336,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [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_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [40] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1014), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(649), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(547), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12533,9 +12413,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12545,8 +12425,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(428), - [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12563,17 +12442,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12593,75 +12472,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, + [41] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1014), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(649), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(445), + [sym_identifier] = ACTIONS(549), + [aux_sym_preproc_include_token1] = ACTIONS(552), + [aux_sym_preproc_def_token1] = ACTIONS(555), + [aux_sym_preproc_if_token1] = ACTIONS(558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(561), + [sym_preproc_directive] = ACTIONS(564), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_typedef] = ACTIONS(570), + [anon_sym_extern] = ACTIONS(573), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(217), + [anon_sym___declspec] = ACTIONS(220), + [anon_sym___cdecl] = ACTIONS(223), + [anon_sym___clrcall] = ACTIONS(223), + [anon_sym___stdcall] = ACTIONS(223), + [anon_sym___fastcall] = ACTIONS(223), + [anon_sym___thiscall] = ACTIONS(223), + [anon_sym___vectorcall] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(232), + [anon_sym_volatile] = ACTIONS(232), + [anon_sym_restrict] = ACTIONS(232), + [anon_sym__Atomic] = ACTIONS(232), + [anon_sym_signed] = ACTIONS(235), + [anon_sym_unsigned] = ACTIONS(235), + [anon_sym_long] = ACTIONS(235), + [anon_sym_short] = ACTIONS(235), + [sym_primitive_type] = ACTIONS(238), + [anon_sym_enum] = ACTIONS(241), + [anon_sym_struct] = ACTIONS(244), + [anon_sym_union] = ACTIONS(247), + [anon_sym_if] = ACTIONS(579), + [anon_sym_switch] = ACTIONS(582), + [anon_sym_case] = ACTIONS(585), + [anon_sym_default] = ACTIONS(588), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(594), + [anon_sym_for] = ACTIONS(597), + [anon_sym_return] = ACTIONS(600), + [anon_sym_break] = ACTIONS(603), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_goto] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_sizeof] = ACTIONS(286), + [sym_number_literal] = ACTIONS(289), + [anon_sym_L_SQUOTE] = ACTIONS(292), + [anon_sym_u_SQUOTE] = ACTIONS(292), + [anon_sym_U_SQUOTE] = ACTIONS(292), + [anon_sym_u8_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_L_DQUOTE] = ACTIONS(295), + [anon_sym_u_DQUOTE] = ACTIONS(295), + [anon_sym_U_DQUOTE] = ACTIONS(295), + [anon_sym_u8_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_true] = ACTIONS(298), + [sym_false] = ACTIONS(298), + [sym_null] = ACTIONS(298), + [sym_comment] = ACTIONS(3), + }, [42] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(381), - [sym_ms_declspec_modifier] = STATE(642), - [sym_ms_call_modifier] = STATE(637), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(843), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), + [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_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1011), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_ms_call_modifier] = STATE(648), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(849), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_translation_unit_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12669,9 +12684,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(422), - [anon_sym_typedef] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12681,7 +12696,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(428), + [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_RBRACE] = ACTIONS(612), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -12699,17 +12714,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12730,54 +12745,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1002), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(44), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1010), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(47), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(616), [aux_sym_preproc_def_token1] = ACTIONS(616), @@ -12799,7 +12816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(111), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), [anon_sym___cdecl] = ACTIONS(616), [anon_sym___clrcall] = ACTIONS(616), @@ -12856,64 +12873,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1002), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(46), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1010), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(614), - [aux_sym_preproc_include_token1] = ACTIONS(620), - [aux_sym_preproc_def_token1] = ACTIONS(620), - [aux_sym_preproc_if_token1] = ACTIONS(620), - [aux_sym_preproc_if_token2] = ACTIONS(620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(620), - [aux_sym_preproc_else_token1] = ACTIONS(620), - [aux_sym_preproc_elif_token1] = ACTIONS(620), - [sym_preproc_directive] = ACTIONS(620), + [aux_sym_preproc_include_token1] = ACTIONS(618), + [aux_sym_preproc_def_token1] = ACTIONS(618), + [aux_sym_preproc_if_token1] = ACTIONS(618), + [aux_sym_preproc_if_token2] = ACTIONS(618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(618), + [aux_sym_preproc_else_token1] = ACTIONS(618), + [aux_sym_preproc_elif_token1] = ACTIONS(618), + [sym_preproc_directive] = ACTIONS(618), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12925,14 +12944,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(111), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(620), - [anon_sym___clrcall] = ACTIONS(620), - [anon_sym___stdcall] = ACTIONS(620), - [anon_sym___fastcall] = ACTIONS(620), - [anon_sym___thiscall] = ACTIONS(620), - [anon_sym___vectorcall] = ACTIONS(620), + [anon_sym___cdecl] = ACTIONS(618), + [anon_sym___clrcall] = ACTIONS(618), + [anon_sym___stdcall] = ACTIONS(618), + [anon_sym___fastcall] = ACTIONS(618), + [anon_sym___thiscall] = ACTIONS(618), + [anon_sym___vectorcall] = ACTIONS(618), [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -12951,10 +12970,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(117), - [anon_sym_else] = ACTIONS(620), + [anon_sym_else] = ACTIONS(618), [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), [anon_sym_while] = ACTIONS(125), [anon_sym_do] = ACTIONS(127), [anon_sym_for] = ACTIONS(129), @@ -12984,19 +13003,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [45] = { [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1002), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1010), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), [sym_if_statement] = STATE(47), @@ -13008,38 +13028,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(47), [sym_continue_statement] = STATE(47), [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [aux_sym_case_statement_repeat1] = STATE(47), [sym_identifier] = ACTIONS(614), - [aux_sym_preproc_include_token1] = ACTIONS(622), - [aux_sym_preproc_def_token1] = ACTIONS(622), - [aux_sym_preproc_if_token1] = ACTIONS(622), - [aux_sym_preproc_if_token2] = ACTIONS(622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(622), - [aux_sym_preproc_else_token1] = ACTIONS(622), - [aux_sym_preproc_elif_token1] = ACTIONS(622), - [sym_preproc_directive] = ACTIONS(622), + [aux_sym_preproc_include_token1] = ACTIONS(620), + [aux_sym_preproc_def_token1] = ACTIONS(620), + [aux_sym_preproc_if_token1] = ACTIONS(620), + [aux_sym_preproc_if_token2] = ACTIONS(620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(620), + [aux_sym_preproc_else_token1] = ACTIONS(620), + [aux_sym_preproc_elif_token1] = ACTIONS(620), + [sym_preproc_directive] = ACTIONS(620), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13051,14 +13072,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(111), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(622), - [anon_sym___clrcall] = ACTIONS(622), - [anon_sym___stdcall] = ACTIONS(622), - [anon_sym___fastcall] = ACTIONS(622), - [anon_sym___thiscall] = ACTIONS(622), - [anon_sym___vectorcall] = ACTIONS(622), + [anon_sym___cdecl] = ACTIONS(620), + [anon_sym___clrcall] = ACTIONS(620), + [anon_sym___stdcall] = ACTIONS(620), + [anon_sym___fastcall] = ACTIONS(620), + [anon_sym___thiscall] = ACTIONS(620), + [anon_sym___vectorcall] = ACTIONS(620), [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -13077,10 +13098,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(117), - [anon_sym_else] = ACTIONS(622), + [anon_sym_else] = ACTIONS(620), [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), + [anon_sym_case] = ACTIONS(620), + [anon_sym_default] = ACTIONS(620), [anon_sym_while] = ACTIONS(125), [anon_sym_do] = ACTIONS(127), [anon_sym_for] = ACTIONS(129), @@ -13108,61 +13129,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [46] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1002), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(624), - [aux_sym_preproc_include_token1] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(627), - [aux_sym_preproc_if_token2] = ACTIONS(627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(627), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1010), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(614), + [aux_sym_preproc_include_token1] = ACTIONS(622), + [aux_sym_preproc_def_token1] = ACTIONS(622), + [aux_sym_preproc_if_token1] = ACTIONS(622), + [aux_sym_preproc_if_token2] = ACTIONS(622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(622), + [aux_sym_preproc_else_token1] = ACTIONS(622), + [aux_sym_preproc_elif_token1] = ACTIONS(622), + [sym_preproc_directive] = ACTIONS(622), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_typedef] = ACTIONS(111), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(622), + [anon_sym___clrcall] = ACTIONS(622), + [anon_sym___stdcall] = ACTIONS(622), + [anon_sym___fastcall] = ACTIONS(622), + [anon_sym___thiscall] = ACTIONS(622), + [anon_sym___vectorcall] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(117), + [anon_sym_else] = ACTIONS(622), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [47] = { + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1010), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(624), + [aux_sym_preproc_include_token1] = ACTIONS(627), + [aux_sym_preproc_def_token1] = ACTIONS(627), + [aux_sym_preproc_if_token1] = ACTIONS(627), + [aux_sym_preproc_if_token2] = ACTIONS(627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(627), [aux_sym_preproc_else_token1] = ACTIONS(627), [aux_sym_preproc_elif_token1] = ACTIONS(627), [sym_preproc_directive] = ACTIONS(627), @@ -13233,189 +13384,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(722), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1002), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(614), - [aux_sym_preproc_include_token1] = ACTIONS(725), - [aux_sym_preproc_def_token1] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(725), - [aux_sym_preproc_if_token2] = ACTIONS(725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(725), - [aux_sym_preproc_else_token1] = ACTIONS(725), - [aux_sym_preproc_elif_token1] = ACTIONS(725), - [sym_preproc_directive] = ACTIONS(725), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_typedef] = ACTIONS(111), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(725), - [anon_sym___clrcall] = ACTIONS(725), - [anon_sym___stdcall] = ACTIONS(725), - [anon_sym___fastcall] = ACTIONS(725), - [anon_sym___thiscall] = ACTIONS(725), - [anon_sym___vectorcall] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(117), - [anon_sym_else] = ACTIONS(725), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(725), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, [48] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(727), - [aux_sym_preproc_include_token1] = ACTIONS(725), - [aux_sym_preproc_def_token1] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(725), - [aux_sym_preproc_if_token2] = ACTIONS(725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(725), - [sym_preproc_directive] = ACTIONS(725), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1013), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(725), + [aux_sym_preproc_include_token1] = ACTIONS(620), + [aux_sym_preproc_def_token1] = ACTIONS(620), + [aux_sym_preproc_if_token1] = ACTIONS(620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(620), + [sym_preproc_directive] = ACTIONS(620), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13423,19 +13449,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(378), - [anon_sym_typedef] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(725), - [anon_sym___clrcall] = ACTIONS(725), - [anon_sym___stdcall] = ACTIONS(725), - [anon_sym___fastcall] = ACTIONS(725), - [anon_sym___thiscall] = ACTIONS(725), - [anon_sym___vectorcall] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym___cdecl] = ACTIONS(620), + [anon_sym___clrcall] = ACTIONS(620), + [anon_sym___stdcall] = ACTIONS(620), + [anon_sym___fastcall] = ACTIONS(620), + [anon_sym___thiscall] = ACTIONS(620), + [anon_sym___vectorcall] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13452,18 +13479,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(386), - [anon_sym_else] = ACTIONS(725), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(725), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_if] = ACTIONS(323), + [anon_sym_else] = ACTIONS(620), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(620), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13484,61 +13511,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [49] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(998), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(55), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1017), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(364), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(58), [sym_identifier] = ACTIONS(729), - [aux_sym_preproc_include_token1] = ACTIONS(620), - [aux_sym_preproc_def_token1] = ACTIONS(620), - [aux_sym_preproc_if_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(620), - [sym_preproc_directive] = ACTIONS(620), + [aux_sym_preproc_include_token1] = ACTIONS(618), + [aux_sym_preproc_def_token1] = ACTIONS(618), + [aux_sym_preproc_if_token1] = ACTIONS(618), + [aux_sym_preproc_if_token2] = ACTIONS(618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(618), + [sym_preproc_directive] = ACTIONS(618), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13546,20 +13576,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_typedef] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_typedef] = ACTIONS(369), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(620), - [anon_sym___clrcall] = ACTIONS(620), - [anon_sym___stdcall] = ACTIONS(620), - [anon_sym___fastcall] = ACTIONS(620), - [anon_sym___thiscall] = ACTIONS(620), - [anon_sym___vectorcall] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym___cdecl] = ACTIONS(618), + [anon_sym___clrcall] = ACTIONS(618), + [anon_sym___stdcall] = ACTIONS(618), + [anon_sym___fastcall] = ACTIONS(618), + [anon_sym___thiscall] = ACTIONS(618), + [anon_sym___vectorcall] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(373), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13576,18 +13605,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_else] = ACTIONS(620), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(618), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13608,59 +13637,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [50] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(727), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(731), + [sym_identifier] = ACTIONS(733), + [aux_sym_preproc_include_token1] = ACTIONS(627), + [aux_sym_preproc_def_token1] = ACTIONS(627), + [aux_sym_preproc_if_token1] = ACTIONS(627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(627), + [sym_preproc_directive] = ACTIONS(627), + [anon_sym_LPAREN2] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_typedef] = ACTIONS(739), + [anon_sym_extern] = ACTIONS(647), + [anon_sym___attribute__] = ACTIONS(650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(653), + [anon_sym___declspec] = ACTIONS(656), + [anon_sym___cdecl] = ACTIONS(627), + [anon_sym___clrcall] = ACTIONS(627), + [anon_sym___stdcall] = ACTIONS(627), + [anon_sym___fastcall] = ACTIONS(627), + [anon_sym___thiscall] = ACTIONS(627), + [anon_sym___vectorcall] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_static] = ACTIONS(647), + [anon_sym_auto] = ACTIONS(647), + [anon_sym_register] = ACTIONS(647), + [anon_sym_inline] = ACTIONS(647), + [anon_sym_const] = ACTIONS(662), + [anon_sym_volatile] = ACTIONS(662), + [anon_sym_restrict] = ACTIONS(662), + [anon_sym__Atomic] = ACTIONS(662), + [anon_sym_signed] = ACTIONS(665), + [anon_sym_unsigned] = ACTIONS(665), + [anon_sym_long] = ACTIONS(665), + [anon_sym_short] = ACTIONS(665), + [sym_primitive_type] = ACTIONS(668), + [anon_sym_enum] = ACTIONS(671), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_union] = ACTIONS(677), + [anon_sym_if] = ACTIONS(745), + [anon_sym_else] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(748), + [anon_sym_case] = ACTIONS(627), + [anon_sym_default] = ACTIONS(627), + [anon_sym_while] = ACTIONS(751), + [anon_sym_do] = ACTIONS(754), + [anon_sym_for] = ACTIONS(757), + [anon_sym_return] = ACTIONS(760), + [anon_sym_break] = ACTIONS(763), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_goto] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_sizeof] = ACTIONS(710), + [sym_number_literal] = ACTIONS(713), + [anon_sym_L_SQUOTE] = ACTIONS(716), + [anon_sym_u_SQUOTE] = ACTIONS(716), + [anon_sym_U_SQUOTE] = ACTIONS(716), + [anon_sym_u8_SQUOTE] = ACTIONS(716), + [anon_sym_SQUOTE] = ACTIONS(716), + [anon_sym_L_DQUOTE] = ACTIONS(719), + [anon_sym_u_DQUOTE] = ACTIONS(719), + [anon_sym_U_DQUOTE] = ACTIONS(719), + [anon_sym_u8_DQUOTE] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [sym_true] = ACTIONS(722), + [sym_false] = ACTIONS(722), + [sym_null] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + }, + [51] = { + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(774), [aux_sym_preproc_include_token1] = ACTIONS(616), [aux_sym_preproc_def_token1] = ACTIONS(616), [aux_sym_preproc_if_token1] = ACTIONS(616), - [aux_sym_preproc_if_token2] = ACTIONS(616), [aux_sym_preproc_ifdef_token1] = ACTIONS(616), [aux_sym_preproc_ifdef_token2] = ACTIONS(616), [sym_preproc_directive] = ACTIONS(616), @@ -13671,11 +13828,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_typedef] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), [anon_sym___cdecl] = ACTIONS(616), [anon_sym___clrcall] = ACTIONS(616), @@ -13683,7 +13840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(616), [anon_sym___thiscall] = ACTIONS(616), [anon_sym___vectorcall] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13700,142 +13857,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(386), + [anon_sym_if] = ACTIONS(57), [anon_sym_else] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(616), [anon_sym_default] = ACTIONS(616), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [51] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(727), - [aux_sym_preproc_include_token1] = ACTIONS(620), - [aux_sym_preproc_def_token1] = ACTIONS(620), - [aux_sym_preproc_if_token1] = ACTIONS(620), - [aux_sym_preproc_if_token2] = ACTIONS(620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(620), - [sym_preproc_directive] = ACTIONS(620), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_typedef] = ACTIONS(380), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(620), - [anon_sym___clrcall] = ACTIONS(620), - [anon_sym___stdcall] = ACTIONS(620), - [anon_sym___fastcall] = ACTIONS(620), - [anon_sym___thiscall] = ACTIONS(620), - [anon_sym___vectorcall] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(386), - [anon_sym_else] = ACTIONS(620), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13856,62 +13889,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [52] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(727), - [aux_sym_preproc_include_token1] = ACTIONS(622), - [aux_sym_preproc_def_token1] = ACTIONS(622), - [aux_sym_preproc_if_token1] = ACTIONS(622), - [aux_sym_preproc_if_token2] = ACTIONS(622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(622), - [sym_preproc_directive] = ACTIONS(622), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(776), + [sym_identifier] = ACTIONS(774), + [aux_sym_preproc_include_token1] = ACTIONS(618), + [aux_sym_preproc_def_token1] = ACTIONS(618), + [aux_sym_preproc_if_token1] = ACTIONS(618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(618), + [sym_preproc_directive] = ACTIONS(618), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13919,19 +13954,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_typedef] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(622), - [anon_sym___clrcall] = ACTIONS(622), - [anon_sym___stdcall] = ACTIONS(622), - [anon_sym___fastcall] = ACTIONS(622), - [anon_sym___thiscall] = ACTIONS(622), - [anon_sym___vectorcall] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym___cdecl] = ACTIONS(618), + [anon_sym___clrcall] = ACTIONS(618), + [anon_sym___stdcall] = ACTIONS(618), + [anon_sym___fastcall] = ACTIONS(618), + [anon_sym___thiscall] = ACTIONS(618), + [anon_sym___vectorcall] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13948,18 +13983,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(386), - [anon_sym_else] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(618), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13980,58 +14015,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [53] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(998), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(49), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1017), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(364), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(729), [aux_sym_preproc_include_token1] = ACTIONS(616), [aux_sym_preproc_def_token1] = ACTIONS(616), [aux_sym_preproc_if_token1] = ACTIONS(616), + [aux_sym_preproc_if_token2] = ACTIONS(616), [aux_sym_preproc_ifdef_token1] = ACTIONS(616), [aux_sym_preproc_ifdef_token2] = ACTIONS(616), [sym_preproc_directive] = ACTIONS(616), @@ -14042,11 +14080,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_typedef] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_typedef] = ACTIONS(369), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), [anon_sym___cdecl] = ACTIONS(616), [anon_sym___clrcall] = ACTIONS(616), @@ -14054,8 +14092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(616), [anon_sym___thiscall] = ACTIONS(616), [anon_sym___vectorcall] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(373), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14072,18 +14109,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(377), [anon_sym_case] = ACTIONS(616), [anon_sym_default] = ACTIONS(616), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14106,19 +14143,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [54] = { [sym_declaration] = STATE(54), [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1017), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(54), [sym_labeled_statement] = STATE(54), [sym_expression_statement] = STATE(54), [sym_if_statement] = STATE(54), @@ -14130,29 +14168,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(54), [sym_continue_statement] = STATE(54), [sym_goto_statement] = STATE(54), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(364), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(735), + [sym_identifier] = ACTIONS(778), [aux_sym_preproc_include_token1] = ACTIONS(627), [aux_sym_preproc_def_token1] = ACTIONS(627), [aux_sym_preproc_if_token1] = ACTIONS(627), @@ -14167,8 +14206,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(635), [anon_sym_STAR] = ACTIONS(638), [anon_sym_AMP] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_typedef] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_typedef] = ACTIONS(784), [anon_sym_extern] = ACTIONS(647), [anon_sym___attribute__] = ACTIONS(650), [anon_sym_LBRACK_LBRACK] = ACTIONS(653), @@ -14179,7 +14218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(627), [anon_sym___thiscall] = ACTIONS(627), [anon_sym___vectorcall] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(787), [anon_sym_static] = ACTIONS(647), [anon_sym_auto] = ACTIONS(647), [anon_sym_register] = ACTIONS(647), @@ -14196,18 +14235,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(671), [anon_sym_struct] = ACTIONS(674), [anon_sym_union] = ACTIONS(677), - [anon_sym_if] = ACTIONS(747), + [anon_sym_if] = ACTIONS(790), [anon_sym_else] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(750), + [anon_sym_switch] = ACTIONS(793), [anon_sym_case] = ACTIONS(627), [anon_sym_default] = ACTIONS(627), - [anon_sym_while] = ACTIONS(753), - [anon_sym_do] = ACTIONS(756), - [anon_sym_for] = ACTIONS(759), - [anon_sym_return] = ACTIONS(762), - [anon_sym_break] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(768), - [anon_sym_goto] = ACTIONS(771), + [anon_sym_while] = ACTIONS(796), + [anon_sym_do] = ACTIONS(799), + [anon_sym_for] = ACTIONS(802), + [anon_sym_return] = ACTIONS(805), + [anon_sym_break] = ACTIONS(808), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(814), [anon_sym_DASH_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(707), [anon_sym_sizeof] = ACTIONS(710), @@ -14228,185 +14267,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(998), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(55), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(727), [sym_identifier] = ACTIONS(774), - [aux_sym_preproc_include_token1] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(629), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_typedef] = ACTIONS(780), - [anon_sym_extern] = ACTIONS(647), - [anon_sym___attribute__] = ACTIONS(650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(653), - [anon_sym___declspec] = ACTIONS(656), - [anon_sym___cdecl] = ACTIONS(627), - [anon_sym___clrcall] = ACTIONS(627), - [anon_sym___stdcall] = ACTIONS(627), - [anon_sym___fastcall] = ACTIONS(627), - [anon_sym___thiscall] = ACTIONS(627), - [anon_sym___vectorcall] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(786), - [anon_sym_static] = ACTIONS(647), - [anon_sym_auto] = ACTIONS(647), - [anon_sym_register] = ACTIONS(647), - [anon_sym_inline] = ACTIONS(647), - [anon_sym_const] = ACTIONS(662), - [anon_sym_volatile] = ACTIONS(662), - [anon_sym_restrict] = ACTIONS(662), - [anon_sym__Atomic] = ACTIONS(662), - [anon_sym_signed] = ACTIONS(665), - [anon_sym_unsigned] = ACTIONS(665), - [anon_sym_long] = ACTIONS(665), - [anon_sym_short] = ACTIONS(665), - [sym_primitive_type] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_union] = ACTIONS(677), - [anon_sym_if] = ACTIONS(788), - [anon_sym_else] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(791), - [anon_sym_case] = ACTIONS(627), - [anon_sym_default] = ACTIONS(627), - [anon_sym_while] = ACTIONS(794), - [anon_sym_do] = ACTIONS(797), - [anon_sym_for] = ACTIONS(800), - [anon_sym_return] = ACTIONS(803), - [anon_sym_break] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_goto] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(707), - [anon_sym_PLUS_PLUS] = ACTIONS(707), - [anon_sym_sizeof] = ACTIONS(710), - [sym_number_literal] = ACTIONS(713), - [anon_sym_L_SQUOTE] = ACTIONS(716), - [anon_sym_u_SQUOTE] = ACTIONS(716), - [anon_sym_U_SQUOTE] = ACTIONS(716), - [anon_sym_u8_SQUOTE] = ACTIONS(716), - [anon_sym_SQUOTE] = ACTIONS(716), - [anon_sym_L_DQUOTE] = ACTIONS(719), - [anon_sym_u_DQUOTE] = ACTIONS(719), - [anon_sym_U_DQUOTE] = ACTIONS(719), - [anon_sym_u8_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(719), - [sym_true] = ACTIONS(722), - [sym_false] = ACTIONS(722), - [sym_null] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - }, - [56] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(998), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(729), - [aux_sym_preproc_include_token1] = ACTIONS(725), - [aux_sym_preproc_def_token1] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(725), - [sym_preproc_directive] = ACTIONS(725), + [aux_sym_preproc_include_token1] = ACTIONS(620), + [aux_sym_preproc_def_token1] = ACTIONS(620), + [aux_sym_preproc_if_token1] = ACTIONS(620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(620), + [sym_preproc_directive] = ACTIONS(620), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14414,20 +14332,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_typedef] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(725), - [anon_sym___clrcall] = ACTIONS(725), - [anon_sym___stdcall] = ACTIONS(725), - [anon_sym___fastcall] = ACTIONS(725), - [anon_sym___thiscall] = ACTIONS(725), - [anon_sym___vectorcall] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym___cdecl] = ACTIONS(620), + [anon_sym___clrcall] = ACTIONS(620), + [anon_sym___stdcall] = ACTIONS(620), + [anon_sym___fastcall] = ACTIONS(620), + [anon_sym___thiscall] = ACTIONS(620), + [anon_sym___vectorcall] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14444,18 +14361,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), - [anon_sym_else] = ACTIONS(725), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(725), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(620), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(620), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14475,56 +14392,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1004), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(786), + [56] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1013), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(56), [sym_identifier] = ACTIONS(817), [aux_sym_preproc_include_token1] = ACTIONS(627), [aux_sym_preproc_def_token1] = ACTIONS(627), @@ -14552,6 +14470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(627), [anon_sym___vectorcall] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(731), [anon_sym_static] = ACTIONS(647), [anon_sym_auto] = ACTIONS(647), [anon_sym_register] = ACTIONS(647), @@ -14599,63 +14518,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(722), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1004), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(61), - [ts_builtin_sym_end] = ACTIONS(733), - [sym_identifier] = ACTIONS(856), - [aux_sym_preproc_include_token1] = ACTIONS(616), - [aux_sym_preproc_def_token1] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(616), - [sym_preproc_directive] = ACTIONS(616), + [57] = { + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(51), + [ts_builtin_sym_end] = ACTIONS(856), + [sym_identifier] = ACTIONS(774), + [aux_sym_preproc_include_token1] = ACTIONS(622), + [aux_sym_preproc_def_token1] = ACTIONS(622), + [aux_sym_preproc_if_token1] = ACTIONS(622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(622), + [sym_preproc_directive] = ACTIONS(622), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14667,14 +14588,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(616), - [anon_sym___clrcall] = ACTIONS(616), - [anon_sym___stdcall] = ACTIONS(616), - [anon_sym___fastcall] = ACTIONS(616), - [anon_sym___thiscall] = ACTIONS(616), - [anon_sym___vectorcall] = ACTIONS(616), + [anon_sym___cdecl] = ACTIONS(622), + [anon_sym___clrcall] = ACTIONS(622), + [anon_sym___stdcall] = ACTIONS(622), + [anon_sym___fastcall] = ACTIONS(622), + [anon_sym___thiscall] = ACTIONS(622), + [anon_sym___vectorcall] = ACTIONS(622), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -14693,10 +14614,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(616), + [anon_sym_else] = ACTIONS(622), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), + [anon_sym_case] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -14723,63 +14644,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1004), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(815), - [sym_identifier] = ACTIONS(856), - [aux_sym_preproc_include_token1] = ACTIONS(725), - [aux_sym_preproc_def_token1] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(725), - [sym_preproc_directive] = ACTIONS(725), + [58] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1017), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(364), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(729), + [aux_sym_preproc_include_token1] = ACTIONS(620), + [aux_sym_preproc_def_token1] = ACTIONS(620), + [aux_sym_preproc_if_token1] = ACTIONS(620), + [aux_sym_preproc_if_token2] = ACTIONS(620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(620), + [sym_preproc_directive] = ACTIONS(620), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14787,19 +14710,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_typedef] = ACTIONS(369), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(725), - [anon_sym___clrcall] = ACTIONS(725), - [anon_sym___stdcall] = ACTIONS(725), - [anon_sym___fastcall] = ACTIONS(725), - [anon_sym___thiscall] = ACTIONS(725), - [anon_sym___vectorcall] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(620), + [anon_sym___clrcall] = ACTIONS(620), + [anon_sym___stdcall] = ACTIONS(620), + [anon_sym___fastcall] = ACTIONS(620), + [anon_sym___thiscall] = ACTIONS(620), + [anon_sym___vectorcall] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(373), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14816,18 +14739,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(725), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(725), - [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_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(620), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(620), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14847,59 +14770,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(998), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(56), + [59] = { + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1017), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(364), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(53), [sym_identifier] = ACTIONS(729), [aux_sym_preproc_include_token1] = ACTIONS(622), [aux_sym_preproc_def_token1] = ACTIONS(622), [aux_sym_preproc_if_token1] = ACTIONS(622), + [aux_sym_preproc_if_token2] = ACTIONS(622), [aux_sym_preproc_ifdef_token1] = ACTIONS(622), [aux_sym_preproc_ifdef_token2] = ACTIONS(622), [sym_preproc_directive] = ACTIONS(622), @@ -14910,11 +14836,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_typedef] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_typedef] = ACTIONS(369), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), [anon_sym___cdecl] = ACTIONS(622), [anon_sym___clrcall] = ACTIONS(622), @@ -14922,8 +14848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(622), [anon_sym___thiscall] = ACTIONS(622), [anon_sym___vectorcall] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(373), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14940,18 +14865,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(432), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(377), [anon_sym_case] = ACTIONS(622), [anon_sym_default] = ACTIONS(622), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14971,63 +14896,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1004), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(731), - [sym_identifier] = ACTIONS(856), - [aux_sym_preproc_include_token1] = ACTIONS(620), - [aux_sym_preproc_def_token1] = ACTIONS(620), - [aux_sym_preproc_if_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(620), - [sym_preproc_directive] = ACTIONS(620), + [60] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1013), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(725), + [aux_sym_preproc_include_token1] = ACTIONS(618), + [aux_sym_preproc_def_token1] = ACTIONS(618), + [aux_sym_preproc_if_token1] = ACTIONS(618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(618), + [sym_preproc_directive] = ACTIONS(618), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15035,19 +14961,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(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(620), - [anon_sym___clrcall] = ACTIONS(620), - [anon_sym___stdcall] = ACTIONS(620), - [anon_sym___fastcall] = ACTIONS(620), - [anon_sym___thiscall] = ACTIONS(620), - [anon_sym___vectorcall] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(618), + [anon_sym___clrcall] = ACTIONS(618), + [anon_sym___stdcall] = ACTIONS(618), + [anon_sym___fastcall] = ACTIONS(618), + [anon_sym___thiscall] = ACTIONS(618), + [anon_sym___vectorcall] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(776), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15064,18 +14991,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(620), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), - [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_if] = ACTIONS(323), + [anon_sym_else] = ACTIONS(618), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -15095,57 +15022,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1004), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [aux_sym_case_statement_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(858), - [sym_identifier] = ACTIONS(856), + [61] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1013), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(725), [aux_sym_preproc_include_token1] = ACTIONS(622), [aux_sym_preproc_def_token1] = ACTIONS(622), [aux_sym_preproc_if_token1] = ACTIONS(622), @@ -15159,11 +15087,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), [anon_sym___cdecl] = ACTIONS(622), [anon_sym___clrcall] = ACTIONS(622), @@ -15171,7 +15099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(622), [anon_sym___thiscall] = ACTIONS(622), [anon_sym___vectorcall] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(856), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15188,18 +15117,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(323), [anon_sym_else] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(325), [anon_sym_case] = ACTIONS(622), [anon_sym_default] = ACTIONS(622), - [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_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -15219,42 +15148,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_declaration] = STATE(477), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1004), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(695), - [sym_comma_expression] = STATE(1357), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(860), + [62] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1013), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(389), + [sym_ms_declspec_modifier] = STATE(650), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym_attributed_non_case_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_attributed_declarator_repeat1] = STATE(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(725), + [aux_sym_preproc_include_token1] = ACTIONS(616), + [aux_sym_preproc_def_token1] = ACTIONS(616), + [aux_sym_preproc_if_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(616), + [sym_preproc_directive] = ACTIONS(616), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15262,11 +15213,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(862), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(616), + [anon_sym___clrcall] = ACTIONS(616), + [anon_sym___stdcall] = ACTIONS(616), + [anon_sym___fastcall] = ACTIONS(616), + [anon_sym___thiscall] = ACTIONS(616), + [anon_sym___vectorcall] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(772), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15283,6 +15243,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(323), + [anon_sym_else] = ACTIONS(616), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -15302,42 +15274,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(474), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1004), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(732), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(860), + [63] = { + [sym_declaration] = STATE(490), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(650), + [sym_ms_declspec_modifier] = STATE(650), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(730), + [sym_comma_expression] = STATE(1365), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15345,10 +15317,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(864), + [anon_sym_SEMI] = ACTIONS(860), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(862), [anon_sym___declspec] = ACTIONS(37), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -15385,42 +15357,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [65] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1004), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(727), - [sym_comma_expression] = STATE(1423), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(860), + [64] = { + [sym_declaration] = STATE(494), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(650), + [sym_ms_declspec_modifier] = STATE(650), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(719), + [sym_comma_expression] = STATE(1441), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15428,10 +15400,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(864), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(862), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [65] = { + [sym_declaration] = STATE(497), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(650), + [sym_ms_declspec_modifier] = STATE(650), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(734), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(858), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(862), [anon_sym___declspec] = ACTIONS(37), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -15469,41 +15524,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(484), - [sym__declaration_modifiers] = STATE(642), - [sym__declaration_specifiers] = STATE(1004), - [sym_attribute_specifier] = STATE(642), - [sym_attribute_declaration] = STATE(642), - [sym_ms_declspec_modifier] = STATE(642), - [sym_storage_class_specifier] = STATE(642), - [sym_type_qualifier] = STATE(642), - [sym__type_specifier] = STATE(701), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(733), - [sym_comma_expression] = STATE(1441), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym__declaration_specifiers_repeat1] = STATE(642), - [aux_sym_sized_type_specifier_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(860), + [sym_declaration] = STATE(483), + [sym__declaration_modifiers] = STATE(650), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(650), + [sym_attribute_declaration] = STATE(650), + [sym_ms_declspec_modifier] = STATE(650), + [sym_storage_class_specifier] = STATE(650), + [sym_type_qualifier] = STATE(650), + [sym__type_specifier] = STATE(705), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(700), + [sym_comma_expression] = STATE(1449), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(650), + [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15514,7 +15569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(868), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(862), [anon_sym___declspec] = ACTIONS(37), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -15552,24 +15607,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [sym__expression] = STATE(510), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(556), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(556), - [sym_call_expression] = STATE(556), - [sym_field_expression] = STATE(556), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(556), - [sym_initializer_list] = STATE(512), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [sym__expression] = STATE(547), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(532), + [sym_initializer_list] = STATE(549), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(870), [anon_sym_COMMA] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(872), @@ -15867,84 +15922,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [71] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_if_token2] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [aux_sym_preproc_else_token1] = ACTIONS(898), - [aux_sym_preproc_elif_token1] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [sym_comment] = ACTIONS(3), - }, - [72] = { [sym_identifier] = ACTIONS(902), [aux_sym_preproc_include_token1] = ACTIONS(902), [aux_sym_preproc_def_token1] = ACTIONS(902), @@ -16022,7 +15999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(902), [sym_comment] = ACTIONS(3), }, - [73] = { + [72] = { [sym_identifier] = ACTIONS(906), [aux_sym_preproc_include_token1] = ACTIONS(906), [aux_sym_preproc_def_token1] = ACTIONS(906), @@ -16100,7 +16077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, - [74] = { + [73] = { [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(910), [aux_sym_preproc_def_token1] = ACTIONS(910), @@ -16178,7 +16155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [75] = { + [74] = { [sym_identifier] = ACTIONS(914), [aux_sym_preproc_include_token1] = ACTIONS(914), [aux_sym_preproc_def_token1] = ACTIONS(914), @@ -16256,6 +16233,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, + [75] = { + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_if_token2] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [aux_sym_preproc_else_token1] = ACTIONS(890), + [aux_sym_preproc_elif_token1] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), + [sym_comment] = ACTIONS(3), + }, [76] = { [sym_identifier] = ACTIONS(918), [aux_sym_preproc_include_token1] = ACTIONS(918), @@ -16304,7 +16359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(918), [anon_sym_union] = ACTIONS(918), [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(922), [anon_sym_switch] = ACTIONS(918), [anon_sym_case] = ACTIONS(918), [anon_sym_default] = ACTIONS(918), @@ -16335,1410 +16390,1488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [77] = { - [sym_identifier] = ACTIONS(922), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_if_token2] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [aux_sym_preproc_else_token1] = ACTIONS(922), - [aux_sym_preproc_elif_token1] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), - [anon_sym_LPAREN2] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_typedef] = ACTIONS(922), - [anon_sym_extern] = ACTIONS(922), - [anon_sym___attribute__] = ACTIONS(922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(924), - [anon_sym___declspec] = ACTIONS(922), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_static] = ACTIONS(922), - [anon_sym_auto] = ACTIONS(922), - [anon_sym_register] = ACTIONS(922), - [anon_sym_inline] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_volatile] = ACTIONS(922), - [anon_sym_restrict] = ACTIONS(922), - [anon_sym__Atomic] = ACTIONS(922), - [anon_sym_signed] = ACTIONS(922), - [anon_sym_unsigned] = ACTIONS(922), - [anon_sym_long] = ACTIONS(922), - [anon_sym_short] = ACTIONS(922), - [sym_primitive_type] = ACTIONS(922), - [anon_sym_enum] = ACTIONS(922), - [anon_sym_struct] = ACTIONS(922), - [anon_sym_union] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_goto] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(922), - [sym_number_literal] = ACTIONS(924), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(924), - [anon_sym_u_DQUOTE] = ACTIONS(924), - [anon_sym_U_DQUOTE] = ACTIONS(924), - [anon_sym_u8_DQUOTE] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_if_token2] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [aux_sym_preproc_else_token1] = ACTIONS(924), + [aux_sym_preproc_elif_token1] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), [sym_comment] = ACTIONS(3), }, [78] = { - [sym_identifier] = ACTIONS(926), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_if_token2] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [aux_sym_preproc_else_token1] = ACTIONS(926), - [aux_sym_preproc_elif_token1] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), - [anon_sym_LPAREN2] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym___attribute__] = ACTIONS(926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(928), - [anon_sym___declspec] = ACTIONS(926), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_static] = ACTIONS(926), - [anon_sym_auto] = ACTIONS(926), - [anon_sym_register] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_const] = ACTIONS(926), - [anon_sym_volatile] = ACTIONS(926), - [anon_sym_restrict] = ACTIONS(926), - [anon_sym__Atomic] = ACTIONS(926), - [anon_sym_signed] = ACTIONS(926), - [anon_sym_unsigned] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), - [sym_primitive_type] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_struct] = ACTIONS(926), - [anon_sym_union] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(926), - [sym_number_literal] = ACTIONS(928), - [anon_sym_L_SQUOTE] = ACTIONS(928), - [anon_sym_u_SQUOTE] = ACTIONS(928), - [anon_sym_U_SQUOTE] = ACTIONS(928), - [anon_sym_u8_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_L_DQUOTE] = ACTIONS(928), - [anon_sym_u_DQUOTE] = ACTIONS(928), - [anon_sym_U_DQUOTE] = ACTIONS(928), - [anon_sym_u8_DQUOTE] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym_true] = ACTIONS(926), - [sym_false] = ACTIONS(926), - [sym_null] = ACTIONS(926), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [aux_sym_preproc_else_token1] = ACTIONS(928), + [aux_sym_preproc_elif_token1] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, [79] = { - [sym_identifier] = ACTIONS(930), - [aux_sym_preproc_include_token1] = ACTIONS(930), - [aux_sym_preproc_def_token1] = ACTIONS(930), - [aux_sym_preproc_if_token1] = ACTIONS(930), - [aux_sym_preproc_if_token2] = ACTIONS(930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(930), - [aux_sym_preproc_else_token1] = ACTIONS(930), - [aux_sym_preproc_elif_token1] = ACTIONS(930), - [sym_preproc_directive] = ACTIONS(930), - [anon_sym_LPAREN2] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_typedef] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(930), - [anon_sym___attribute__] = ACTIONS(930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(932), - [anon_sym___declspec] = ACTIONS(930), - [anon_sym___cdecl] = ACTIONS(930), - [anon_sym___clrcall] = ACTIONS(930), - [anon_sym___stdcall] = ACTIONS(930), - [anon_sym___fastcall] = ACTIONS(930), - [anon_sym___thiscall] = ACTIONS(930), - [anon_sym___vectorcall] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_static] = ACTIONS(930), - [anon_sym_auto] = ACTIONS(930), - [anon_sym_register] = ACTIONS(930), - [anon_sym_inline] = ACTIONS(930), - [anon_sym_const] = ACTIONS(930), - [anon_sym_volatile] = ACTIONS(930), - [anon_sym_restrict] = ACTIONS(930), - [anon_sym__Atomic] = ACTIONS(930), - [anon_sym_signed] = ACTIONS(930), - [anon_sym_unsigned] = ACTIONS(930), - [anon_sym_long] = ACTIONS(930), - [anon_sym_short] = ACTIONS(930), - [sym_primitive_type] = ACTIONS(930), - [anon_sym_enum] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(930), - [anon_sym_case] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_return] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_goto] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(932), - [anon_sym_L_SQUOTE] = ACTIONS(932), - [anon_sym_u_SQUOTE] = ACTIONS(932), - [anon_sym_U_SQUOTE] = ACTIONS(932), - [anon_sym_u8_SQUOTE] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_L_DQUOTE] = ACTIONS(932), - [anon_sym_u_DQUOTE] = ACTIONS(932), - [anon_sym_U_DQUOTE] = ACTIONS(932), - [anon_sym_u8_DQUOTE] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [sym_null] = ACTIONS(930), + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_if_token2] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [aux_sym_preproc_else_token1] = ACTIONS(932), + [aux_sym_preproc_elif_token1] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, [80] = { - [sym_identifier] = ACTIONS(934), - [aux_sym_preproc_include_token1] = ACTIONS(934), - [aux_sym_preproc_def_token1] = ACTIONS(934), - [aux_sym_preproc_if_token1] = ACTIONS(934), - [aux_sym_preproc_if_token2] = ACTIONS(934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(934), - [aux_sym_preproc_else_token1] = ACTIONS(934), - [aux_sym_preproc_elif_token1] = ACTIONS(934), - [sym_preproc_directive] = ACTIONS(934), - [anon_sym_LPAREN2] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_typedef] = ACTIONS(934), - [anon_sym_extern] = ACTIONS(934), - [anon_sym___attribute__] = ACTIONS(934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(936), - [anon_sym___declspec] = ACTIONS(934), - [anon_sym___cdecl] = ACTIONS(934), - [anon_sym___clrcall] = ACTIONS(934), - [anon_sym___stdcall] = ACTIONS(934), - [anon_sym___fastcall] = ACTIONS(934), - [anon_sym___thiscall] = ACTIONS(934), - [anon_sym___vectorcall] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_static] = ACTIONS(934), - [anon_sym_auto] = ACTIONS(934), - [anon_sym_register] = ACTIONS(934), - [anon_sym_inline] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(934), - [anon_sym_restrict] = ACTIONS(934), - [anon_sym__Atomic] = ACTIONS(934), - [anon_sym_signed] = ACTIONS(934), - [anon_sym_unsigned] = ACTIONS(934), - [anon_sym_long] = ACTIONS(934), - [anon_sym_short] = ACTIONS(934), - [sym_primitive_type] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_switch] = ACTIONS(934), - [anon_sym_case] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_do] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_goto] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_sizeof] = ACTIONS(934), - [sym_number_literal] = ACTIONS(936), - [anon_sym_L_SQUOTE] = ACTIONS(936), - [anon_sym_u_SQUOTE] = ACTIONS(936), - [anon_sym_U_SQUOTE] = ACTIONS(936), - [anon_sym_u8_SQUOTE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_L_DQUOTE] = ACTIONS(936), - [anon_sym_u_DQUOTE] = ACTIONS(936), - [anon_sym_U_DQUOTE] = ACTIONS(936), - [anon_sym_u8_DQUOTE] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_null] = ACTIONS(934), + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_if_token2] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [aux_sym_preproc_else_token1] = ACTIONS(936), + [aux_sym_preproc_elif_token1] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, [81] = { - [sym_identifier] = ACTIONS(938), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_if_token2] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [aux_sym_preproc_else_token1] = ACTIONS(938), - [aux_sym_preproc_elif_token1] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), - [anon_sym_LPAREN2] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym___attribute__] = ACTIONS(938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(940), - [anon_sym___declspec] = ACTIONS(938), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_static] = ACTIONS(938), - [anon_sym_auto] = ACTIONS(938), - [anon_sym_register] = ACTIONS(938), - [anon_sym_inline] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_volatile] = ACTIONS(938), - [anon_sym_restrict] = ACTIONS(938), - [anon_sym__Atomic] = ACTIONS(938), - [anon_sym_signed] = ACTIONS(938), - [anon_sym_unsigned] = ACTIONS(938), - [anon_sym_long] = ACTIONS(938), - [anon_sym_short] = ACTIONS(938), - [sym_primitive_type] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_struct] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_goto] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(938), - [sym_number_literal] = ACTIONS(940), - [anon_sym_L_SQUOTE] = ACTIONS(940), - [anon_sym_u_SQUOTE] = ACTIONS(940), - [anon_sym_U_SQUOTE] = ACTIONS(940), - [anon_sym_u8_SQUOTE] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_L_DQUOTE] = ACTIONS(940), - [anon_sym_u_DQUOTE] = ACTIONS(940), - [anon_sym_U_DQUOTE] = ACTIONS(940), - [anon_sym_u8_DQUOTE] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(940), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(938), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [aux_sym_preproc_else_token1] = ACTIONS(940), + [aux_sym_preproc_elif_token1] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, [82] = { - [sym_identifier] = ACTIONS(942), - [aux_sym_preproc_include_token1] = ACTIONS(942), - [aux_sym_preproc_def_token1] = ACTIONS(942), - [aux_sym_preproc_if_token1] = ACTIONS(942), - [aux_sym_preproc_if_token2] = ACTIONS(942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(942), - [aux_sym_preproc_else_token1] = ACTIONS(942), - [aux_sym_preproc_elif_token1] = ACTIONS(942), - [sym_preproc_directive] = ACTIONS(942), - [anon_sym_LPAREN2] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_typedef] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym___attribute__] = ACTIONS(942), - [anon_sym_LBRACK_LBRACK] = ACTIONS(944), - [anon_sym___declspec] = ACTIONS(942), - [anon_sym___cdecl] = ACTIONS(942), - [anon_sym___clrcall] = ACTIONS(942), - [anon_sym___stdcall] = ACTIONS(942), - [anon_sym___fastcall] = ACTIONS(942), - [anon_sym___thiscall] = ACTIONS(942), - [anon_sym___vectorcall] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_static] = ACTIONS(942), - [anon_sym_auto] = ACTIONS(942), - [anon_sym_register] = ACTIONS(942), - [anon_sym_inline] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_volatile] = ACTIONS(942), - [anon_sym_restrict] = ACTIONS(942), - [anon_sym__Atomic] = ACTIONS(942), - [anon_sym_signed] = ACTIONS(942), - [anon_sym_unsigned] = ACTIONS(942), - [anon_sym_long] = ACTIONS(942), - [anon_sym_short] = ACTIONS(942), - [sym_primitive_type] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(942), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_goto] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(944), - [anon_sym_u_DQUOTE] = ACTIONS(944), - [anon_sym_U_DQUOTE] = ACTIONS(944), - [anon_sym_u8_DQUOTE] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym_true] = ACTIONS(942), - [sym_false] = ACTIONS(942), - [sym_null] = ACTIONS(942), + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [aux_sym_preproc_else_token1] = ACTIONS(944), + [aux_sym_preproc_elif_token1] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, [83] = { - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_if_token2] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [aux_sym_preproc_else_token1] = ACTIONS(946), - [aux_sym_preproc_elif_token1] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_if_token2] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [aux_sym_preproc_else_token1] = ACTIONS(948), + [aux_sym_preproc_elif_token1] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, [84] = { - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [aux_sym_preproc_if_token2] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [aux_sym_preproc_else_token1] = ACTIONS(950), - [aux_sym_preproc_elif_token1] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(950), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(950), - [anon_sym___cdecl] = ACTIONS(950), - [anon_sym___clrcall] = ACTIONS(950), - [anon_sym___stdcall] = ACTIONS(950), - [anon_sym___fastcall] = ACTIONS(950), - [anon_sym___thiscall] = ACTIONS(950), - [anon_sym___vectorcall] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_static] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [anon_sym__Atomic] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_long] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_union] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_default] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_sizeof] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym_u_SQUOTE] = ACTIONS(952), - [anon_sym_U_SQUOTE] = ACTIONS(952), - [anon_sym_u8_SQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_u_DQUOTE] = ACTIONS(952), - [anon_sym_U_DQUOTE] = ACTIONS(952), - [anon_sym_u8_DQUOTE] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [aux_sym_preproc_else_token1] = ACTIONS(944), + [aux_sym_preproc_elif_token1] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, [85] = { - [sym_identifier] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [aux_sym_preproc_else_token1] = ACTIONS(954), - [aux_sym_preproc_elif_token1] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym___declspec] = ACTIONS(954), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_L_SQUOTE] = ACTIONS(956), - [anon_sym_u_SQUOTE] = ACTIONS(956), - [anon_sym_U_SQUOTE] = ACTIONS(956), - [anon_sym_u8_SQUOTE] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_L_DQUOTE] = ACTIONS(956), - [anon_sym_u_DQUOTE] = ACTIONS(956), - [anon_sym_U_DQUOTE] = ACTIONS(956), - [anon_sym_u8_DQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_null] = ACTIONS(954), + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [aux_sym_preproc_else_token1] = ACTIONS(952), + [aux_sym_preproc_elif_token1] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, [86] = { - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [aux_sym_preproc_else_token1] = ACTIONS(958), - [aux_sym_preproc_elif_token1] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym___attribute__] = ACTIONS(958), - [anon_sym_LBRACK_LBRACK] = ACTIONS(960), - [anon_sym___declspec] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [anon_sym_L_SQUOTE] = ACTIONS(960), - [anon_sym_u_SQUOTE] = ACTIONS(960), - [anon_sym_U_SQUOTE] = ACTIONS(960), - [anon_sym_u8_SQUOTE] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_L_DQUOTE] = ACTIONS(960), - [anon_sym_u_DQUOTE] = ACTIONS(960), - [anon_sym_U_DQUOTE] = ACTIONS(960), - [anon_sym_u8_DQUOTE] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [aux_sym_preproc_else_token1] = ACTIONS(956), + [aux_sym_preproc_elif_token1] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, [87] = { - [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [aux_sym_preproc_else_token1] = ACTIONS(962), - [aux_sym_preproc_elif_token1] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym___attribute__] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym___declspec] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_L_SQUOTE] = ACTIONS(964), - [anon_sym_u_SQUOTE] = ACTIONS(964), - [anon_sym_U_SQUOTE] = ACTIONS(964), - [anon_sym_u8_SQUOTE] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_L_DQUOTE] = ACTIONS(964), - [anon_sym_u_DQUOTE] = ACTIONS(964), - [anon_sym_U_DQUOTE] = ACTIONS(964), - [anon_sym_u8_DQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [aux_sym_preproc_else_token1] = ACTIONS(960), + [aux_sym_preproc_elif_token1] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, [88] = { - [sym_identifier] = ACTIONS(966), - [aux_sym_preproc_include_token1] = ACTIONS(966), - [aux_sym_preproc_def_token1] = ACTIONS(966), - [aux_sym_preproc_if_token1] = ACTIONS(966), - [aux_sym_preproc_if_token2] = ACTIONS(966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(966), - [aux_sym_preproc_else_token1] = ACTIONS(966), - [aux_sym_preproc_elif_token1] = ACTIONS(966), - [sym_preproc_directive] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym___attribute__] = ACTIONS(966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(966), - [anon_sym___clrcall] = ACTIONS(966), - [anon_sym___stdcall] = ACTIONS(966), - [anon_sym___fastcall] = ACTIONS(966), - [anon_sym___thiscall] = ACTIONS(966), - [anon_sym___vectorcall] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_static] = ACTIONS(966), - [anon_sym_auto] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_inline] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_volatile] = ACTIONS(966), - [anon_sym_restrict] = ACTIONS(966), - [anon_sym__Atomic] = ACTIONS(966), - [anon_sym_signed] = ACTIONS(966), - [anon_sym_unsigned] = ACTIONS(966), - [anon_sym_long] = ACTIONS(966), - [anon_sym_short] = ACTIONS(966), - [sym_primitive_type] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_switch] = ACTIONS(966), - [anon_sym_case] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_goto] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(966), - [sym_number_literal] = ACTIONS(968), - [anon_sym_L_SQUOTE] = ACTIONS(968), - [anon_sym_u_SQUOTE] = ACTIONS(968), - [anon_sym_U_SQUOTE] = ACTIONS(968), - [anon_sym_u8_SQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_L_DQUOTE] = ACTIONS(968), - [anon_sym_u_DQUOTE] = ACTIONS(968), - [anon_sym_U_DQUOTE] = ACTIONS(968), - [anon_sym_u8_DQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), - [sym_null] = ACTIONS(966), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [aux_sym_preproc_else_token1] = ACTIONS(964), + [aux_sym_preproc_elif_token1] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, [89] = { - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [aux_sym_preproc_if_token2] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [aux_sym_preproc_else_token1] = ACTIONS(970), - [aux_sym_preproc_elif_token1] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(970), - [anon_sym___cdecl] = ACTIONS(970), - [anon_sym___clrcall] = ACTIONS(970), - [anon_sym___stdcall] = ACTIONS(970), - [anon_sym___fastcall] = ACTIONS(970), - [anon_sym___thiscall] = ACTIONS(970), - [anon_sym___vectorcall] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_static] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_long] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_case] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_sizeof] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym_u_SQUOTE] = ACTIONS(972), - [anon_sym_U_SQUOTE] = ACTIONS(972), - [anon_sym_u8_SQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_u_DQUOTE] = ACTIONS(972), - [anon_sym_U_DQUOTE] = ACTIONS(972), - [anon_sym_u8_DQUOTE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [aux_sym_preproc_else_token1] = ACTIONS(968), + [aux_sym_preproc_elif_token1] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, [90] = { - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_if_token2] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [aux_sym_preproc_else_token1] = ACTIONS(974), - [aux_sym_preproc_elif_token1] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym___attribute__] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(976), - [anon_sym___declspec] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_static] = ACTIONS(974), - [anon_sym_auto] = ACTIONS(974), - [anon_sym_register] = ACTIONS(974), - [anon_sym_inline] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_volatile] = ACTIONS(974), - [anon_sym_restrict] = ACTIONS(974), - [anon_sym__Atomic] = ACTIONS(974), - [anon_sym_signed] = ACTIONS(974), - [anon_sym_unsigned] = ACTIONS(974), - [anon_sym_long] = ACTIONS(974), - [anon_sym_short] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_goto] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_sizeof] = ACTIONS(974), - [sym_number_literal] = ACTIONS(976), - [anon_sym_L_SQUOTE] = ACTIONS(976), - [anon_sym_u_SQUOTE] = ACTIONS(976), - [anon_sym_U_SQUOTE] = ACTIONS(976), - [anon_sym_u8_SQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_L_DQUOTE] = ACTIONS(976), - [anon_sym_u_DQUOTE] = ACTIONS(976), - [anon_sym_U_DQUOTE] = ACTIONS(976), - [anon_sym_u8_DQUOTE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [aux_sym_preproc_else_token1] = ACTIONS(972), + [aux_sym_preproc_elif_token1] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, [91] = { - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_if_token2] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [aux_sym_preproc_else_token1] = ACTIONS(978), - [aux_sym_preproc_elif_token1] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym___attribute__] = ACTIONS(978), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(978), - [anon_sym_auto] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_inline] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_volatile] = ACTIONS(978), - [anon_sym_restrict] = ACTIONS(978), - [anon_sym__Atomic] = ACTIONS(978), - [anon_sym_signed] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(978), - [anon_sym_long] = ACTIONS(978), - [anon_sym_short] = ACTIONS(978), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_goto] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(978), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [aux_sym_preproc_else_token1] = ACTIONS(976), + [aux_sym_preproc_elif_token1] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, [92] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [aux_sym_preproc_else_token1] = ACTIONS(982), - [aux_sym_preproc_elif_token1] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(984), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [aux_sym_preproc_else_token1] = ACTIONS(980), + [aux_sym_preproc_elif_token1] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, [93] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [aux_sym_preproc_else_token1] = ACTIONS(986), - [aux_sym_preproc_elif_token1] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [aux_sym_preproc_else_token1] = ACTIONS(984), + [aux_sym_preproc_elif_token1] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, [94] = { - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_if_token2] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [aux_sym_preproc_else_token1] = ACTIONS(990), - [aux_sym_preproc_elif_token1] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(990), - [anon_sym___cdecl] = ACTIONS(990), - [anon_sym___clrcall] = ACTIONS(990), - [anon_sym___stdcall] = ACTIONS(990), - [anon_sym___fastcall] = ACTIONS(990), - [anon_sym___thiscall] = ACTIONS(990), - [anon_sym___vectorcall] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(994), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [aux_sym_preproc_else_token1] = ACTIONS(988), + [aux_sym_preproc_elif_token1] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, [95] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [aux_sym_preproc_else_token1] = ACTIONS(992), + [aux_sym_preproc_elif_token1] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [96] = { [sym_identifier] = ACTIONS(996), [aux_sym_preproc_include_token1] = ACTIONS(996), [aux_sym_preproc_def_token1] = ACTIONS(996), @@ -17816,7 +17949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [96] = { + [97] = { [sym_identifier] = ACTIONS(1000), [aux_sym_preproc_include_token1] = ACTIONS(1000), [aux_sym_preproc_def_token1] = ACTIONS(1000), @@ -17894,84 +18027,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [97] = { - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_if_token2] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [aux_sym_preproc_else_token1] = ACTIONS(890), - [aux_sym_preproc_elif_token1] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), - [sym_comment] = ACTIONS(3), - }, [98] = { [sym_identifier] = ACTIONS(1004), [aux_sym_preproc_include_token1] = ACTIONS(1004), @@ -18410,6 +18465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1024), [anon_sym_union] = ACTIONS(1024), [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), [anon_sym_switch] = ACTIONS(1024), [anon_sym_case] = ACTIONS(1024), [anon_sym_default] = ACTIONS(1024), @@ -18902,83 +18958,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [110] = { - [sym__expression] = STATE(628), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(556), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(556), - [sym_call_expression] = STATE(556), - [sym_field_expression] = STATE(556), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(556), - [sym_initializer_list] = STATE(512), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN2] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token2] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [aux_sym_preproc_else_token1] = ACTIONS(1052), + [aux_sym_preproc_elif_token1] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + }, + [111] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [aux_sym_preproc_else_token1] = ACTIONS(1056), + [aux_sym_preproc_elif_token1] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_PERCENT] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_CARET] = ACTIONS(882), [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_GT_EQ] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_RBRACK] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_QMARK] = ACTIONS(872), - [anon_sym_STAR_EQ] = ACTIONS(872), - [anon_sym_SLASH_EQ] = ACTIONS(872), - [anon_sym_PERCENT_EQ] = ACTIONS(872), - [anon_sym_PLUS_EQ] = ACTIONS(872), - [anon_sym_DASH_EQ] = ACTIONS(872), - [anon_sym_LT_LT_EQ] = ACTIONS(872), - [anon_sym_GT_GT_EQ] = ACTIONS(872), - [anon_sym_AMP_EQ] = ACTIONS(872), - [anon_sym_CARET_EQ] = ACTIONS(872), - [anon_sym_PIPE_EQ] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [anon_sym_PLUS_PLUS] = ACTIONS(1060), - [anon_sym_sizeof] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(882), - [anon_sym_DASH_GT] = ACTIONS(872), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [111] = { + [112] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [aux_sym_preproc_else_token1] = ACTIONS(1060), + [aux_sym_preproc_elif_token1] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [113] = { [sym_identifier] = ACTIONS(1064), [aux_sym_preproc_include_token1] = ACTIONS(1064), [aux_sym_preproc_def_token1] = ACTIONS(1064), @@ -19055,7 +19265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, - [112] = { + [114] = { [sym_identifier] = ACTIONS(1068), [aux_sym_preproc_include_token1] = ACTIONS(1068), [aux_sym_preproc_def_token1] = ACTIONS(1068), @@ -19132,7 +19342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [113] = { + [115] = { [sym_identifier] = ACTIONS(1072), [aux_sym_preproc_include_token1] = ACTIONS(1072), [aux_sym_preproc_def_token1] = ACTIONS(1072), @@ -19209,7 +19419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [114] = { + [116] = { [sym_identifier] = ACTIONS(1076), [aux_sym_preproc_include_token1] = ACTIONS(1076), [aux_sym_preproc_def_token1] = ACTIONS(1076), @@ -19286,7 +19496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [115] = { + [117] = { [sym_identifier] = ACTIONS(1080), [aux_sym_preproc_include_token1] = ACTIONS(1080), [aux_sym_preproc_def_token1] = ACTIONS(1080), @@ -19363,7 +19573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [116] = { + [118] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), @@ -19440,235 +19650,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [117] = { - [sym_identifier] = ACTIONS(1088), - [aux_sym_preproc_include_token1] = ACTIONS(1088), - [aux_sym_preproc_def_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token2] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), - [aux_sym_preproc_else_token1] = ACTIONS(1088), - [aux_sym_preproc_elif_token1] = ACTIONS(1088), - [sym_preproc_directive] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1090), + [119] = { + [sym__expression] = STATE(630), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(532), + [sym_initializer_list] = STATE(549), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN2] = ACTIONS(1088), [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym___attribute__] = ACTIONS(1088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), - [anon_sym___declspec] = ACTIONS(1088), - [anon_sym___cdecl] = ACTIONS(1088), - [anon_sym___clrcall] = ACTIONS(1088), - [anon_sym___stdcall] = ACTIONS(1088), - [anon_sym___fastcall] = ACTIONS(1088), - [anon_sym___thiscall] = ACTIONS(1088), - [anon_sym___vectorcall] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_auto] = ACTIONS(1088), - [anon_sym_register] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(1088), - [anon_sym_volatile] = ACTIONS(1088), - [anon_sym_restrict] = ACTIONS(1088), - [anon_sym__Atomic] = ACTIONS(1088), - [anon_sym_signed] = ACTIONS(1088), - [anon_sym_unsigned] = ACTIONS(1088), - [anon_sym_long] = ACTIONS(1088), - [anon_sym_short] = ACTIONS(1088), - [sym_primitive_type] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_case] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_goto] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_sizeof] = ACTIONS(1088), - [sym_number_literal] = ACTIONS(1090), - [anon_sym_L_SQUOTE] = ACTIONS(1090), - [anon_sym_u_SQUOTE] = ACTIONS(1090), - [anon_sym_U_SQUOTE] = ACTIONS(1090), - [anon_sym_u8_SQUOTE] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1090), - [anon_sym_L_DQUOTE] = ACTIONS(1090), - [anon_sym_u_DQUOTE] = ACTIONS(1090), - [anon_sym_U_DQUOTE] = ACTIONS(1090), - [anon_sym_u8_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_true] = ACTIONS(1088), - [sym_false] = ACTIONS(1088), - [sym_null] = ACTIONS(1088), - [sym_comment] = ACTIONS(3), - }, - [118] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token2] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [aux_sym_preproc_else_token1] = ACTIONS(1092), - [aux_sym_preproc_elif_token1] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(872), + [anon_sym_AMP_AMP] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_CARET] = ACTIONS(882), [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), - [sym_comment] = ACTIONS(3), - }, - [119] = { - [sym_identifier] = ACTIONS(1096), - [aux_sym_preproc_include_token1] = ACTIONS(1096), - [aux_sym_preproc_def_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token2] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), - [aux_sym_preproc_else_token1] = ACTIONS(1096), - [aux_sym_preproc_elif_token1] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym___attribute__] = ACTIONS(1096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), - [anon_sym___declspec] = ACTIONS(1096), - [anon_sym___cdecl] = ACTIONS(1096), - [anon_sym___clrcall] = ACTIONS(1096), - [anon_sym___stdcall] = ACTIONS(1096), - [anon_sym___fastcall] = ACTIONS(1096), - [anon_sym___thiscall] = ACTIONS(1096), - [anon_sym___vectorcall] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_auto] = ACTIONS(1096), - [anon_sym_register] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_volatile] = ACTIONS(1096), - [anon_sym_restrict] = ACTIONS(1096), - [anon_sym__Atomic] = ACTIONS(1096), - [anon_sym_signed] = ACTIONS(1096), - [anon_sym_unsigned] = ACTIONS(1096), - [anon_sym_long] = ACTIONS(1096), - [anon_sym_short] = ACTIONS(1096), - [sym_primitive_type] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_sizeof] = ACTIONS(1096), - [sym_number_literal] = ACTIONS(1098), - [anon_sym_L_SQUOTE] = ACTIONS(1098), - [anon_sym_u_SQUOTE] = ACTIONS(1098), - [anon_sym_U_SQUOTE] = ACTIONS(1098), - [anon_sym_u8_SQUOTE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_L_DQUOTE] = ACTIONS(1098), - [anon_sym_u_DQUOTE] = ACTIONS(1098), - [anon_sym_U_DQUOTE] = ACTIONS(1098), - [anon_sym_u8_DQUOTE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym_true] = ACTIONS(1096), - [sym_false] = ACTIONS(1096), - [sym_null] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(872), + [anon_sym_BANG_EQ] = ACTIONS(872), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(872), + [anon_sym_LT_EQ] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_STAR_EQ] = ACTIONS(872), + [anon_sym_SLASH_EQ] = ACTIONS(872), + [anon_sym_PERCENT_EQ] = ACTIONS(872), + [anon_sym_PLUS_EQ] = ACTIONS(872), + [anon_sym_DASH_EQ] = ACTIONS(872), + [anon_sym_LT_LT_EQ] = ACTIONS(872), + [anon_sym_GT_GT_EQ] = ACTIONS(872), + [anon_sym_AMP_EQ] = ACTIONS(872), + [anon_sym_CARET_EQ] = ACTIONS(872), + [anon_sym_PIPE_EQ] = ACTIONS(872), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1098), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_DASH_GT] = ACTIONS(872), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [120] = { @@ -20134,994 +20190,768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [126] = { - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_if_token2] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(990), - [anon_sym___cdecl] = ACTIONS(990), - [anon_sym___clrcall] = ACTIONS(990), - [anon_sym___stdcall] = ACTIONS(990), - [anon_sym___fastcall] = ACTIONS(990), - [anon_sym___thiscall] = ACTIONS(990), - [anon_sym___vectorcall] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(1124), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token2] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [aux_sym_preproc_else_token1] = ACTIONS(1124), + [aux_sym_preproc_elif_token1] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), [sym_comment] = ACTIONS(3), }, [127] = { - [ts_builtin_sym_end] = ACTIONS(892), - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_if_token2] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, [128] = { - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym___attribute__] = ACTIONS(978), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(978), - [anon_sym_auto] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_inline] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_volatile] = ACTIONS(978), - [anon_sym_restrict] = ACTIONS(978), - [anon_sym__Atomic] = ACTIONS(978), - [anon_sym_signed] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(978), - [anon_sym_long] = ACTIONS(978), - [anon_sym_short] = ACTIONS(978), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_goto] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(978), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), + [ts_builtin_sym_end] = ACTIONS(896), + [sym_identifier] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(896), + [anon_sym___declspec] = ACTIONS(894), + [anon_sym___cdecl] = ACTIONS(894), + [anon_sym___clrcall] = ACTIONS(894), + [anon_sym___stdcall] = ACTIONS(894), + [anon_sym___fastcall] = ACTIONS(894), + [anon_sym___thiscall] = ACTIONS(894), + [anon_sym___vectorcall] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(896), + [anon_sym_L_SQUOTE] = ACTIONS(896), + [anon_sym_u_SQUOTE] = ACTIONS(896), + [anon_sym_U_SQUOTE] = ACTIONS(896), + [anon_sym_u8_SQUOTE] = ACTIONS(896), + [anon_sym_SQUOTE] = ACTIONS(896), + [anon_sym_L_DQUOTE] = ACTIONS(896), + [anon_sym_u_DQUOTE] = ACTIONS(896), + [anon_sym_U_DQUOTE] = ACTIONS(896), + [anon_sym_u8_DQUOTE] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(896), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), [sym_comment] = ACTIONS(3), }, [129] = { - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, [130] = { - [ts_builtin_sym_end] = ACTIONS(948), - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, [131] = { - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym___attribute__] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(976), - [anon_sym___declspec] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_static] = ACTIONS(974), - [anon_sym_auto] = ACTIONS(974), - [anon_sym_register] = ACTIONS(974), - [anon_sym_inline] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_volatile] = ACTIONS(974), - [anon_sym_restrict] = ACTIONS(974), - [anon_sym__Atomic] = ACTIONS(974), - [anon_sym_signed] = ACTIONS(974), - [anon_sym_unsigned] = ACTIONS(974), - [anon_sym_long] = ACTIONS(974), - [anon_sym_short] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_goto] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_sizeof] = ACTIONS(974), - [sym_number_literal] = ACTIONS(976), - [anon_sym_L_SQUOTE] = ACTIONS(976), - [anon_sym_u_SQUOTE] = ACTIONS(976), - [anon_sym_U_SQUOTE] = ACTIONS(976), - [anon_sym_u8_SQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_L_DQUOTE] = ACTIONS(976), - [anon_sym_u_DQUOTE] = ACTIONS(976), - [anon_sym_U_DQUOTE] = ACTIONS(976), - [anon_sym_u8_DQUOTE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, [132] = { - [ts_builtin_sym_end] = ACTIONS(932), - [sym_identifier] = ACTIONS(930), - [aux_sym_preproc_include_token1] = ACTIONS(930), - [aux_sym_preproc_def_token1] = ACTIONS(930), - [aux_sym_preproc_if_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(930), - [sym_preproc_directive] = ACTIONS(930), - [anon_sym_LPAREN2] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_typedef] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(930), - [anon_sym___attribute__] = ACTIONS(930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(932), - [anon_sym___declspec] = ACTIONS(930), - [anon_sym___cdecl] = ACTIONS(930), - [anon_sym___clrcall] = ACTIONS(930), - [anon_sym___stdcall] = ACTIONS(930), - [anon_sym___fastcall] = ACTIONS(930), - [anon_sym___thiscall] = ACTIONS(930), - [anon_sym___vectorcall] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_static] = ACTIONS(930), - [anon_sym_auto] = ACTIONS(930), - [anon_sym_register] = ACTIONS(930), - [anon_sym_inline] = ACTIONS(930), - [anon_sym_const] = ACTIONS(930), - [anon_sym_volatile] = ACTIONS(930), - [anon_sym_restrict] = ACTIONS(930), - [anon_sym__Atomic] = ACTIONS(930), - [anon_sym_signed] = ACTIONS(930), - [anon_sym_unsigned] = ACTIONS(930), - [anon_sym_long] = ACTIONS(930), - [anon_sym_short] = ACTIONS(930), - [sym_primitive_type] = ACTIONS(930), - [anon_sym_enum] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(930), - [anon_sym_case] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_return] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_goto] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(932), - [anon_sym_L_SQUOTE] = ACTIONS(932), - [anon_sym_u_SQUOTE] = ACTIONS(932), - [anon_sym_U_SQUOTE] = ACTIONS(932), - [anon_sym_u8_SQUOTE] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_L_DQUOTE] = ACTIONS(932), - [anon_sym_u_DQUOTE] = ACTIONS(932), - [anon_sym_U_DQUOTE] = ACTIONS(932), - [anon_sym_u8_DQUOTE] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [sym_null] = ACTIONS(930), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, [133] = { - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(970), - [anon_sym___cdecl] = ACTIONS(970), - [anon_sym___clrcall] = ACTIONS(970), - [anon_sym___stdcall] = ACTIONS(970), - [anon_sym___fastcall] = ACTIONS(970), - [anon_sym___thiscall] = ACTIONS(970), - [anon_sym___vectorcall] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_static] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_long] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_case] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_sizeof] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym_u_SQUOTE] = ACTIONS(972), - [anon_sym_U_SQUOTE] = ACTIONS(972), - [anon_sym_u8_SQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_u_DQUOTE] = ACTIONS(972), - [anon_sym_U_DQUOTE] = ACTIONS(972), - [anon_sym_u8_DQUOTE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, [134] = { - [sym_identifier] = ACTIONS(966), - [aux_sym_preproc_include_token1] = ACTIONS(966), - [aux_sym_preproc_def_token1] = ACTIONS(966), - [aux_sym_preproc_if_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(966), - [sym_preproc_directive] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym___attribute__] = ACTIONS(966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(966), - [anon_sym___clrcall] = ACTIONS(966), - [anon_sym___stdcall] = ACTIONS(966), - [anon_sym___fastcall] = ACTIONS(966), - [anon_sym___thiscall] = ACTIONS(966), - [anon_sym___vectorcall] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_static] = ACTIONS(966), - [anon_sym_auto] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_inline] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_volatile] = ACTIONS(966), - [anon_sym_restrict] = ACTIONS(966), - [anon_sym__Atomic] = ACTIONS(966), - [anon_sym_signed] = ACTIONS(966), - [anon_sym_unsigned] = ACTIONS(966), - [anon_sym_long] = ACTIONS(966), - [anon_sym_short] = ACTIONS(966), - [sym_primitive_type] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_switch] = ACTIONS(966), - [anon_sym_case] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_goto] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(966), - [sym_number_literal] = ACTIONS(968), - [anon_sym_L_SQUOTE] = ACTIONS(968), - [anon_sym_u_SQUOTE] = ACTIONS(968), - [anon_sym_U_SQUOTE] = ACTIONS(968), - [anon_sym_u8_SQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_L_DQUOTE] = ACTIONS(968), - [anon_sym_u_DQUOTE] = ACTIONS(968), - [anon_sym_U_DQUOTE] = ACTIONS(968), - [anon_sym_u8_DQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), - [sym_null] = ACTIONS(966), + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, [135] = { - [sym_identifier] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym___declspec] = ACTIONS(954), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_L_SQUOTE] = ACTIONS(956), - [anon_sym_u_SQUOTE] = ACTIONS(956), - [anon_sym_U_SQUOTE] = ACTIONS(956), - [anon_sym_u8_SQUOTE] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_L_DQUOTE] = ACTIONS(956), - [anon_sym_u_DQUOTE] = ACTIONS(956), - [anon_sym_U_DQUOTE] = ACTIONS(956), - [anon_sym_u8_DQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_null] = ACTIONS(954), + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, [136] = { - [sym_identifier] = ACTIONS(942), - [aux_sym_preproc_include_token1] = ACTIONS(942), - [aux_sym_preproc_def_token1] = ACTIONS(942), - [aux_sym_preproc_if_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(942), - [sym_preproc_directive] = ACTIONS(942), - [anon_sym_LPAREN2] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_typedef] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym___attribute__] = ACTIONS(942), - [anon_sym_LBRACK_LBRACK] = ACTIONS(944), - [anon_sym___declspec] = ACTIONS(942), - [anon_sym___cdecl] = ACTIONS(942), - [anon_sym___clrcall] = ACTIONS(942), - [anon_sym___stdcall] = ACTIONS(942), - [anon_sym___fastcall] = ACTIONS(942), - [anon_sym___thiscall] = ACTIONS(942), - [anon_sym___vectorcall] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_static] = ACTIONS(942), - [anon_sym_auto] = ACTIONS(942), - [anon_sym_register] = ACTIONS(942), - [anon_sym_inline] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_volatile] = ACTIONS(942), - [anon_sym_restrict] = ACTIONS(942), - [anon_sym__Atomic] = ACTIONS(942), - [anon_sym_signed] = ACTIONS(942), - [anon_sym_unsigned] = ACTIONS(942), - [anon_sym_long] = ACTIONS(942), - [anon_sym_short] = ACTIONS(942), - [sym_primitive_type] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(942), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_goto] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(944), - [anon_sym_u_DQUOTE] = ACTIONS(944), - [anon_sym_U_DQUOTE] = ACTIONS(944), - [anon_sym_u8_DQUOTE] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym_true] = ACTIONS(942), - [sym_false] = ACTIONS(942), - [sym_null] = ACTIONS(942), - [sym_comment] = ACTIONS(3), - }, - [137] = { - [sym_identifier] = ACTIONS(934), - [aux_sym_preproc_include_token1] = ACTIONS(934), - [aux_sym_preproc_def_token1] = ACTIONS(934), - [aux_sym_preproc_if_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(934), - [sym_preproc_directive] = ACTIONS(934), - [anon_sym_LPAREN2] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_typedef] = ACTIONS(934), - [anon_sym_extern] = ACTIONS(934), - [anon_sym___attribute__] = ACTIONS(934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(936), - [anon_sym___declspec] = ACTIONS(934), - [anon_sym___cdecl] = ACTIONS(934), - [anon_sym___clrcall] = ACTIONS(934), - [anon_sym___stdcall] = ACTIONS(934), - [anon_sym___fastcall] = ACTIONS(934), - [anon_sym___thiscall] = ACTIONS(934), - [anon_sym___vectorcall] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_static] = ACTIONS(934), - [anon_sym_auto] = ACTIONS(934), - [anon_sym_register] = ACTIONS(934), - [anon_sym_inline] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(934), - [anon_sym_restrict] = ACTIONS(934), - [anon_sym__Atomic] = ACTIONS(934), - [anon_sym_signed] = ACTIONS(934), - [anon_sym_unsigned] = ACTIONS(934), - [anon_sym_long] = ACTIONS(934), - [anon_sym_short] = ACTIONS(934), - [sym_primitive_type] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_switch] = ACTIONS(934), - [anon_sym_case] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_do] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_goto] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_sizeof] = ACTIONS(934), - [sym_number_literal] = ACTIONS(936), - [anon_sym_L_SQUOTE] = ACTIONS(936), - [anon_sym_u_SQUOTE] = ACTIONS(936), - [anon_sym_U_SQUOTE] = ACTIONS(936), - [anon_sym_u8_SQUOTE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_L_DQUOTE] = ACTIONS(936), - [anon_sym_u_DQUOTE] = ACTIONS(936), - [anon_sym_U_DQUOTE] = ACTIONS(936), - [anon_sym_u8_DQUOTE] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_null] = ACTIONS(934), - [sym_comment] = ACTIONS(3), - }, - [138] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [139] = { + [ts_builtin_sym_end] = ACTIONS(916), [sym_identifier] = ACTIONS(914), [aux_sym_preproc_include_token1] = ACTIONS(914), [aux_sym_preproc_def_token1] = ACTIONS(914), @@ -21149,7 +20979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(914), [anon_sym___vectorcall] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), [anon_sym_static] = ACTIONS(914), [anon_sym_auto] = ACTIONS(914), [anon_sym_register] = ACTIONS(914), @@ -21197,1607 +21026,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, - [140] = { - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(922), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), - [anon_sym_LPAREN2] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_typedef] = ACTIONS(922), - [anon_sym_extern] = ACTIONS(922), - [anon_sym___attribute__] = ACTIONS(922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(924), - [anon_sym___declspec] = ACTIONS(922), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_static] = ACTIONS(922), - [anon_sym_auto] = ACTIONS(922), - [anon_sym_register] = ACTIONS(922), - [anon_sym_inline] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_volatile] = ACTIONS(922), - [anon_sym_restrict] = ACTIONS(922), - [anon_sym__Atomic] = ACTIONS(922), - [anon_sym_signed] = ACTIONS(922), - [anon_sym_unsigned] = ACTIONS(922), - [anon_sym_long] = ACTIONS(922), - [anon_sym_short] = ACTIONS(922), - [sym_primitive_type] = ACTIONS(922), - [anon_sym_enum] = ACTIONS(922), - [anon_sym_struct] = ACTIONS(922), - [anon_sym_union] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_goto] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(922), - [sym_number_literal] = ACTIONS(924), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(924), - [anon_sym_u_DQUOTE] = ACTIONS(924), - [anon_sym_U_DQUOTE] = ACTIONS(924), - [anon_sym_u8_DQUOTE] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, - [141] = { - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), - [sym_comment] = ACTIONS(3), - }, - [142] = { - [sym_identifier] = ACTIONS(942), - [aux_sym_preproc_include_token1] = ACTIONS(942), - [aux_sym_preproc_def_token1] = ACTIONS(942), - [aux_sym_preproc_if_token1] = ACTIONS(942), - [aux_sym_preproc_if_token2] = ACTIONS(942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(942), - [sym_preproc_directive] = ACTIONS(942), - [anon_sym_LPAREN2] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_typedef] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym___attribute__] = ACTIONS(942), - [anon_sym_LBRACK_LBRACK] = ACTIONS(944), - [anon_sym___declspec] = ACTIONS(942), - [anon_sym___cdecl] = ACTIONS(942), - [anon_sym___clrcall] = ACTIONS(942), - [anon_sym___stdcall] = ACTIONS(942), - [anon_sym___fastcall] = ACTIONS(942), - [anon_sym___thiscall] = ACTIONS(942), - [anon_sym___vectorcall] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_static] = ACTIONS(942), - [anon_sym_auto] = ACTIONS(942), - [anon_sym_register] = ACTIONS(942), - [anon_sym_inline] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_volatile] = ACTIONS(942), - [anon_sym_restrict] = ACTIONS(942), - [anon_sym__Atomic] = ACTIONS(942), - [anon_sym_signed] = ACTIONS(942), - [anon_sym_unsigned] = ACTIONS(942), - [anon_sym_long] = ACTIONS(942), - [anon_sym_short] = ACTIONS(942), - [sym_primitive_type] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(942), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_goto] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(944), - [anon_sym_u_DQUOTE] = ACTIONS(944), - [anon_sym_U_DQUOTE] = ACTIONS(944), - [anon_sym_u8_DQUOTE] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym_true] = ACTIONS(942), - [sym_false] = ACTIONS(942), - [sym_null] = ACTIONS(942), - [sym_comment] = ACTIONS(3), - }, - [143] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(984), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - }, - [144] = { - [sym_identifier] = ACTIONS(966), - [aux_sym_preproc_include_token1] = ACTIONS(966), - [aux_sym_preproc_def_token1] = ACTIONS(966), - [aux_sym_preproc_if_token1] = ACTIONS(966), - [aux_sym_preproc_if_token2] = ACTIONS(966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(966), - [sym_preproc_directive] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym___attribute__] = ACTIONS(966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(966), - [anon_sym___clrcall] = ACTIONS(966), - [anon_sym___stdcall] = ACTIONS(966), - [anon_sym___fastcall] = ACTIONS(966), - [anon_sym___thiscall] = ACTIONS(966), - [anon_sym___vectorcall] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_static] = ACTIONS(966), - [anon_sym_auto] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_inline] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_volatile] = ACTIONS(966), - [anon_sym_restrict] = ACTIONS(966), - [anon_sym__Atomic] = ACTIONS(966), - [anon_sym_signed] = ACTIONS(966), - [anon_sym_unsigned] = ACTIONS(966), - [anon_sym_long] = ACTIONS(966), - [anon_sym_short] = ACTIONS(966), - [sym_primitive_type] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_switch] = ACTIONS(966), - [anon_sym_case] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_goto] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(966), - [sym_number_literal] = ACTIONS(968), - [anon_sym_L_SQUOTE] = ACTIONS(968), - [anon_sym_u_SQUOTE] = ACTIONS(968), - [anon_sym_U_SQUOTE] = ACTIONS(968), - [anon_sym_u8_SQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_L_DQUOTE] = ACTIONS(968), - [anon_sym_u_DQUOTE] = ACTIONS(968), - [anon_sym_U_DQUOTE] = ACTIONS(968), - [anon_sym_u8_DQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), - [sym_null] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - }, - [145] = { - [sym_identifier] = ACTIONS(934), - [aux_sym_preproc_include_token1] = ACTIONS(934), - [aux_sym_preproc_def_token1] = ACTIONS(934), - [aux_sym_preproc_if_token1] = ACTIONS(934), - [aux_sym_preproc_if_token2] = ACTIONS(934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(934), - [sym_preproc_directive] = ACTIONS(934), - [anon_sym_LPAREN2] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_typedef] = ACTIONS(934), - [anon_sym_extern] = ACTIONS(934), - [anon_sym___attribute__] = ACTIONS(934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(936), - [anon_sym___declspec] = ACTIONS(934), - [anon_sym___cdecl] = ACTIONS(934), - [anon_sym___clrcall] = ACTIONS(934), - [anon_sym___stdcall] = ACTIONS(934), - [anon_sym___fastcall] = ACTIONS(934), - [anon_sym___thiscall] = ACTIONS(934), - [anon_sym___vectorcall] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_static] = ACTIONS(934), - [anon_sym_auto] = ACTIONS(934), - [anon_sym_register] = ACTIONS(934), - [anon_sym_inline] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(934), - [anon_sym_restrict] = ACTIONS(934), - [anon_sym__Atomic] = ACTIONS(934), - [anon_sym_signed] = ACTIONS(934), - [anon_sym_unsigned] = ACTIONS(934), - [anon_sym_long] = ACTIONS(934), - [anon_sym_short] = ACTIONS(934), - [sym_primitive_type] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_switch] = ACTIONS(934), - [anon_sym_case] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_do] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_goto] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_sizeof] = ACTIONS(934), - [sym_number_literal] = ACTIONS(936), - [anon_sym_L_SQUOTE] = ACTIONS(936), - [anon_sym_u_SQUOTE] = ACTIONS(936), - [anon_sym_U_SQUOTE] = ACTIONS(936), - [anon_sym_u8_SQUOTE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_L_DQUOTE] = ACTIONS(936), - [anon_sym_u_DQUOTE] = ACTIONS(936), - [anon_sym_U_DQUOTE] = ACTIONS(936), - [anon_sym_u8_DQUOTE] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_null] = ACTIONS(934), - [sym_comment] = ACTIONS(3), - }, - [146] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(904), - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [aux_sym_preproc_if_token2] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(970), - [anon_sym___cdecl] = ACTIONS(970), - [anon_sym___clrcall] = ACTIONS(970), - [anon_sym___stdcall] = ACTIONS(970), - [anon_sym___fastcall] = ACTIONS(970), - [anon_sym___thiscall] = ACTIONS(970), - [anon_sym___vectorcall] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_static] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_long] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_case] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_sizeof] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym_u_SQUOTE] = ACTIONS(972), - [anon_sym_U_SQUOTE] = ACTIONS(972), - [anon_sym_u8_SQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_u_DQUOTE] = ACTIONS(972), - [anon_sym_U_DQUOTE] = ACTIONS(972), - [anon_sym_u8_DQUOTE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - }, - [149] = { - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(936), - [sym_identifier] = ACTIONS(934), - [aux_sym_preproc_include_token1] = ACTIONS(934), - [aux_sym_preproc_def_token1] = ACTIONS(934), - [aux_sym_preproc_if_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(934), - [sym_preproc_directive] = ACTIONS(934), - [anon_sym_LPAREN2] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_typedef] = ACTIONS(934), - [anon_sym_extern] = ACTIONS(934), - [anon_sym___attribute__] = ACTIONS(934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(936), - [anon_sym___declspec] = ACTIONS(934), - [anon_sym___cdecl] = ACTIONS(934), - [anon_sym___clrcall] = ACTIONS(934), - [anon_sym___stdcall] = ACTIONS(934), - [anon_sym___fastcall] = ACTIONS(934), - [anon_sym___thiscall] = ACTIONS(934), - [anon_sym___vectorcall] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_static] = ACTIONS(934), - [anon_sym_auto] = ACTIONS(934), - [anon_sym_register] = ACTIONS(934), - [anon_sym_inline] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(934), - [anon_sym_restrict] = ACTIONS(934), - [anon_sym__Atomic] = ACTIONS(934), - [anon_sym_signed] = ACTIONS(934), - [anon_sym_unsigned] = ACTIONS(934), - [anon_sym_long] = ACTIONS(934), - [anon_sym_short] = ACTIONS(934), - [sym_primitive_type] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_switch] = ACTIONS(934), - [anon_sym_case] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_do] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_goto] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_sizeof] = ACTIONS(934), - [sym_number_literal] = ACTIONS(936), - [anon_sym_L_SQUOTE] = ACTIONS(936), - [anon_sym_u_SQUOTE] = ACTIONS(936), - [anon_sym_U_SQUOTE] = ACTIONS(936), - [anon_sym_u8_SQUOTE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_L_DQUOTE] = ACTIONS(936), - [anon_sym_u_DQUOTE] = ACTIONS(936), - [anon_sym_U_DQUOTE] = ACTIONS(936), - [anon_sym_u8_DQUOTE] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_null] = ACTIONS(934), - [sym_comment] = ACTIONS(3), - }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(944), - [sym_identifier] = ACTIONS(942), - [aux_sym_preproc_include_token1] = ACTIONS(942), - [aux_sym_preproc_def_token1] = ACTIONS(942), - [aux_sym_preproc_if_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(942), - [sym_preproc_directive] = ACTIONS(942), - [anon_sym_LPAREN2] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_typedef] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym___attribute__] = ACTIONS(942), - [anon_sym_LBRACK_LBRACK] = ACTIONS(944), - [anon_sym___declspec] = ACTIONS(942), - [anon_sym___cdecl] = ACTIONS(942), - [anon_sym___clrcall] = ACTIONS(942), - [anon_sym___stdcall] = ACTIONS(942), - [anon_sym___fastcall] = ACTIONS(942), - [anon_sym___thiscall] = ACTIONS(942), - [anon_sym___vectorcall] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_static] = ACTIONS(942), - [anon_sym_auto] = ACTIONS(942), - [anon_sym_register] = ACTIONS(942), - [anon_sym_inline] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_volatile] = ACTIONS(942), - [anon_sym_restrict] = ACTIONS(942), - [anon_sym__Atomic] = ACTIONS(942), - [anon_sym_signed] = ACTIONS(942), - [anon_sym_unsigned] = ACTIONS(942), - [anon_sym_long] = ACTIONS(942), - [anon_sym_short] = ACTIONS(942), - [sym_primitive_type] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(942), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_goto] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(944), - [anon_sym_u_DQUOTE] = ACTIONS(944), - [anon_sym_U_DQUOTE] = ACTIONS(944), - [anon_sym_u8_DQUOTE] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym_true] = ACTIONS(942), - [sym_false] = ACTIONS(942), - [sym_null] = ACTIONS(942), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [ts_builtin_sym_end] = ACTIONS(956), - [sym_identifier] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym___declspec] = ACTIONS(954), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_L_SQUOTE] = ACTIONS(956), - [anon_sym_u_SQUOTE] = ACTIONS(956), - [anon_sym_U_SQUOTE] = ACTIONS(956), - [anon_sym_u8_SQUOTE] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_L_DQUOTE] = ACTIONS(956), - [anon_sym_u_DQUOTE] = ACTIONS(956), - [anon_sym_U_DQUOTE] = ACTIONS(956), - [anon_sym_u8_DQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_null] = ACTIONS(954), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_identifier] = ACTIONS(966), - [aux_sym_preproc_include_token1] = ACTIONS(966), - [aux_sym_preproc_def_token1] = ACTIONS(966), - [aux_sym_preproc_if_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(966), - [sym_preproc_directive] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym___attribute__] = ACTIONS(966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(966), - [anon_sym___clrcall] = ACTIONS(966), - [anon_sym___stdcall] = ACTIONS(966), - [anon_sym___fastcall] = ACTIONS(966), - [anon_sym___thiscall] = ACTIONS(966), - [anon_sym___vectorcall] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_static] = ACTIONS(966), - [anon_sym_auto] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_inline] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_volatile] = ACTIONS(966), - [anon_sym_restrict] = ACTIONS(966), - [anon_sym__Atomic] = ACTIONS(966), - [anon_sym_signed] = ACTIONS(966), - [anon_sym_unsigned] = ACTIONS(966), - [anon_sym_long] = ACTIONS(966), - [anon_sym_short] = ACTIONS(966), - [sym_primitive_type] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_switch] = ACTIONS(966), - [anon_sym_case] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_goto] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(966), - [sym_number_literal] = ACTIONS(968), - [anon_sym_L_SQUOTE] = ACTIONS(968), - [anon_sym_u_SQUOTE] = ACTIONS(968), - [anon_sym_U_SQUOTE] = ACTIONS(968), - [anon_sym_u8_SQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_L_DQUOTE] = ACTIONS(968), - [anon_sym_u_DQUOTE] = ACTIONS(968), - [anon_sym_U_DQUOTE] = ACTIONS(968), - [anon_sym_u8_DQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), - [sym_null] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - }, - [154] = { - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_if_token2] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym___attribute__] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(976), - [anon_sym___declspec] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_static] = ACTIONS(974), - [anon_sym_auto] = ACTIONS(974), - [anon_sym_register] = ACTIONS(974), - [anon_sym_inline] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_volatile] = ACTIONS(974), - [anon_sym_restrict] = ACTIONS(974), - [anon_sym__Atomic] = ACTIONS(974), - [anon_sym_signed] = ACTIONS(974), - [anon_sym_unsigned] = ACTIONS(974), - [anon_sym_long] = ACTIONS(974), - [anon_sym_short] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_goto] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_sizeof] = ACTIONS(974), - [sym_number_literal] = ACTIONS(976), - [anon_sym_L_SQUOTE] = ACTIONS(976), - [anon_sym_u_SQUOTE] = ACTIONS(976), - [anon_sym_U_SQUOTE] = ACTIONS(976), - [anon_sym_u8_SQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_L_DQUOTE] = ACTIONS(976), - [anon_sym_u_DQUOTE] = ACTIONS(976), - [anon_sym_U_DQUOTE] = ACTIONS(976), - [anon_sym_u8_DQUOTE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_comment] = ACTIONS(3), - }, - [155] = { - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(970), - [anon_sym___cdecl] = ACTIONS(970), - [anon_sym___clrcall] = ACTIONS(970), - [anon_sym___stdcall] = ACTIONS(970), - [anon_sym___fastcall] = ACTIONS(970), - [anon_sym___thiscall] = ACTIONS(970), - [anon_sym___vectorcall] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_static] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_long] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_case] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_sizeof] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym_u_SQUOTE] = ACTIONS(972), - [anon_sym_U_SQUOTE] = ACTIONS(972), - [anon_sym_u8_SQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_u_DQUOTE] = ACTIONS(972), - [anon_sym_U_DQUOTE] = ACTIONS(972), - [anon_sym_u8_DQUOTE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(976), - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym___attribute__] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(976), - [anon_sym___declspec] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_static] = ACTIONS(974), - [anon_sym_auto] = ACTIONS(974), - [anon_sym_register] = ACTIONS(974), - [anon_sym_inline] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_volatile] = ACTIONS(974), - [anon_sym_restrict] = ACTIONS(974), - [anon_sym__Atomic] = ACTIONS(974), - [anon_sym_signed] = ACTIONS(974), - [anon_sym_unsigned] = ACTIONS(974), - [anon_sym_long] = ACTIONS(974), - [anon_sym_short] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_goto] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_sizeof] = ACTIONS(974), - [sym_number_literal] = ACTIONS(976), - [anon_sym_L_SQUOTE] = ACTIONS(976), - [anon_sym_u_SQUOTE] = ACTIONS(976), - [anon_sym_U_SQUOTE] = ACTIONS(976), - [anon_sym_u8_SQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_L_DQUOTE] = ACTIONS(976), - [anon_sym_u_DQUOTE] = ACTIONS(976), - [anon_sym_U_DQUOTE] = ACTIONS(976), - [anon_sym_u8_DQUOTE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_comment] = ACTIONS(3), - }, - [157] = { - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_if_token2] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym___attribute__] = ACTIONS(978), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(978), - [anon_sym_auto] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_inline] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_volatile] = ACTIONS(978), - [anon_sym_restrict] = ACTIONS(978), - [anon_sym__Atomic] = ACTIONS(978), - [anon_sym_signed] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(978), - [anon_sym_long] = ACTIONS(978), - [anon_sym_short] = ACTIONS(978), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_goto] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(978), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [sym_comment] = ACTIONS(3), - }, - [158] = { - [ts_builtin_sym_end] = ACTIONS(980), - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym___attribute__] = ACTIONS(978), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(978), - [anon_sym_auto] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_inline] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_volatile] = ACTIONS(978), - [anon_sym_restrict] = ACTIONS(978), - [anon_sym__Atomic] = ACTIONS(978), - [anon_sym_signed] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(978), - [anon_sym_long] = ACTIONS(978), - [anon_sym_short] = ACTIONS(978), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_goto] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(978), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [sym_comment] = ACTIONS(3), - }, - [159] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(984), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(984), - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(984), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - }, - [161] = { + [137] = { [sym_identifier] = ACTIONS(1000), [aux_sym_preproc_include_token1] = ACTIONS(1000), [aux_sym_preproc_def_token1] = ACTIONS(1000), [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), [sym_preproc_directive] = ACTIONS(1000), @@ -22821,7 +21055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1000), [anon_sym___vectorcall] = ACTIONS(1000), [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), [anon_sym_static] = ACTIONS(1000), [anon_sym_auto] = ACTIONS(1000), [anon_sym_register] = ACTIONS(1000), @@ -22869,468 +21102,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [162] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token2] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), + [138] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [163] = { - [sym_identifier] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(894), - [aux_sym_preproc_if_token2] = ACTIONS(894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(894), - [sym_preproc_directive] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(896), - [anon_sym___declspec] = ACTIONS(894), - [anon_sym___cdecl] = ACTIONS(894), - [anon_sym___clrcall] = ACTIONS(894), - [anon_sym___stdcall] = ACTIONS(894), - [anon_sym___fastcall] = ACTIONS(894), - [anon_sym___thiscall] = ACTIONS(894), - [anon_sym___vectorcall] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(894), - [anon_sym_restrict] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(894), - [anon_sym_signed] = ACTIONS(894), - [anon_sym_unsigned] = ACTIONS(894), - [anon_sym_long] = ACTIONS(894), - [anon_sym_short] = ACTIONS(894), - [sym_primitive_type] = ACTIONS(894), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(894), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(894), - [anon_sym_else] = ACTIONS(894), - [anon_sym_switch] = ACTIONS(894), - [anon_sym_case] = ACTIONS(894), - [anon_sym_default] = ACTIONS(894), - [anon_sym_while] = ACTIONS(894), - [anon_sym_do] = ACTIONS(894), - [anon_sym_for] = ACTIONS(894), - [anon_sym_return] = ACTIONS(894), - [anon_sym_break] = ACTIONS(894), - [anon_sym_continue] = ACTIONS(894), - [anon_sym_goto] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(894), - [sym_number_literal] = ACTIONS(896), - [anon_sym_L_SQUOTE] = ACTIONS(896), - [anon_sym_u_SQUOTE] = ACTIONS(896), - [anon_sym_U_SQUOTE] = ACTIONS(896), - [anon_sym_u8_SQUOTE] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(896), - [anon_sym_L_DQUOTE] = ACTIONS(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), - [sym_null] = ACTIONS(894), - [sym_comment] = ACTIONS(3), - }, - [164] = { - [sym_identifier] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(894), - [sym_preproc_directive] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(896), - [anon_sym___declspec] = ACTIONS(894), - [anon_sym___cdecl] = ACTIONS(894), - [anon_sym___clrcall] = ACTIONS(894), - [anon_sym___stdcall] = ACTIONS(894), - [anon_sym___fastcall] = ACTIONS(894), - [anon_sym___thiscall] = ACTIONS(894), - [anon_sym___vectorcall] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(894), - [anon_sym_restrict] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(894), - [anon_sym_signed] = ACTIONS(894), - [anon_sym_unsigned] = ACTIONS(894), - [anon_sym_long] = ACTIONS(894), - [anon_sym_short] = ACTIONS(894), - [sym_primitive_type] = ACTIONS(894), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(894), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(894), - [anon_sym_else] = ACTIONS(894), - [anon_sym_switch] = ACTIONS(894), - [anon_sym_case] = ACTIONS(894), - [anon_sym_default] = ACTIONS(894), - [anon_sym_while] = ACTIONS(894), - [anon_sym_do] = ACTIONS(894), - [anon_sym_for] = ACTIONS(894), - [anon_sym_return] = ACTIONS(894), - [anon_sym_break] = ACTIONS(894), - [anon_sym_continue] = ACTIONS(894), - [anon_sym_goto] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(894), - [sym_number_literal] = ACTIONS(896), - [anon_sym_L_SQUOTE] = ACTIONS(896), - [anon_sym_u_SQUOTE] = ACTIONS(896), - [anon_sym_U_SQUOTE] = ACTIONS(896), - [anon_sym_u8_SQUOTE] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(896), - [anon_sym_L_DQUOTE] = ACTIONS(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), - [sym_null] = ACTIONS(894), - [sym_comment] = ACTIONS(3), - }, - [165] = { - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), + [139] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(896), - [sym_identifier] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(894), - [sym_preproc_directive] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(896), - [anon_sym___declspec] = ACTIONS(894), - [anon_sym___cdecl] = ACTIONS(894), - [anon_sym___clrcall] = ACTIONS(894), - [anon_sym___stdcall] = ACTIONS(894), - [anon_sym___fastcall] = ACTIONS(894), - [anon_sym___thiscall] = ACTIONS(894), - [anon_sym___vectorcall] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(894), - [anon_sym_restrict] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(894), - [anon_sym_signed] = ACTIONS(894), - [anon_sym_unsigned] = ACTIONS(894), - [anon_sym_long] = ACTIONS(894), - [anon_sym_short] = ACTIONS(894), - [sym_primitive_type] = ACTIONS(894), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(894), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(894), - [anon_sym_else] = ACTIONS(894), - [anon_sym_switch] = ACTIONS(894), - [anon_sym_case] = ACTIONS(894), - [anon_sym_default] = ACTIONS(894), - [anon_sym_while] = ACTIONS(894), - [anon_sym_do] = ACTIONS(894), - [anon_sym_for] = ACTIONS(894), - [anon_sym_return] = ACTIONS(894), - [anon_sym_break] = ACTIONS(894), - [anon_sym_continue] = ACTIONS(894), - [anon_sym_goto] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(894), - [sym_number_literal] = ACTIONS(896), - [anon_sym_L_SQUOTE] = ACTIONS(896), - [anon_sym_u_SQUOTE] = ACTIONS(896), - [anon_sym_U_SQUOTE] = ACTIONS(896), - [anon_sym_u8_SQUOTE] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(896), - [anon_sym_L_DQUOTE] = ACTIONS(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), - [sym_null] = ACTIONS(894), + [140] = { + [ts_builtin_sym_end] = ACTIONS(958), + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [167] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), + [141] = { + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, - [168] = { + [142] = { + [ts_builtin_sym_end] = ACTIONS(1006), [sym_identifier] = ACTIONS(1004), [aux_sym_preproc_include_token1] = ACTIONS(1004), [aux_sym_preproc_def_token1] = ACTIONS(1004), [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token2] = ACTIONS(1004), [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), [sym_preproc_directive] = ACTIONS(1004), @@ -23401,544 +21482,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [169] = { - [sym_identifier] = ACTIONS(922), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), - [anon_sym_LPAREN2] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_typedef] = ACTIONS(922), - [anon_sym_extern] = ACTIONS(922), - [anon_sym___attribute__] = ACTIONS(922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(924), - [anon_sym___declspec] = ACTIONS(922), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_static] = ACTIONS(922), - [anon_sym_auto] = ACTIONS(922), - [anon_sym_register] = ACTIONS(922), - [anon_sym_inline] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_volatile] = ACTIONS(922), - [anon_sym_restrict] = ACTIONS(922), - [anon_sym__Atomic] = ACTIONS(922), - [anon_sym_signed] = ACTIONS(922), - [anon_sym_unsigned] = ACTIONS(922), - [anon_sym_long] = ACTIONS(922), - [anon_sym_short] = ACTIONS(922), - [sym_primitive_type] = ACTIONS(922), - [anon_sym_enum] = ACTIONS(922), - [anon_sym_struct] = ACTIONS(922), - [anon_sym_union] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_goto] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(922), - [sym_number_literal] = ACTIONS(924), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(924), - [anon_sym_u_DQUOTE] = ACTIONS(924), - [anon_sym_U_DQUOTE] = ACTIONS(924), - [anon_sym_u8_DQUOTE] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), + [143] = { + [ts_builtin_sym_end] = ACTIONS(946), + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [170] = { - [ts_builtin_sym_end] = ACTIONS(900), - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), + [144] = { + [ts_builtin_sym_end] = ACTIONS(946), + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [171] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token2] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token2] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(900), - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(990), - [anon_sym___cdecl] = ACTIONS(990), - [anon_sym___clrcall] = ACTIONS(990), - [anon_sym___stdcall] = ACTIONS(990), - [anon_sym___fastcall] = ACTIONS(990), - [anon_sym___thiscall] = ACTIONS(990), - [anon_sym___vectorcall] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [145] = { + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [176] = { + [146] = { + [ts_builtin_sym_end] = ACTIONS(1014), [sym_identifier] = ACTIONS(1012), [aux_sym_preproc_include_token1] = ACTIONS(1012), [aux_sym_preproc_def_token1] = ACTIONS(1012), [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token2] = ACTIONS(1012), [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), [sym_preproc_directive] = ACTIONS(1012), @@ -24009,83 +21786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [177] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_comment] = ACTIONS(3), - }, - [178] = { + [147] = { + [ts_builtin_sym_end] = ACTIONS(1022), [sym_identifier] = ACTIONS(1020), [aux_sym_preproc_include_token1] = ACTIONS(1020), [aux_sym_preproc_def_token1] = ACTIONS(1020), @@ -24113,7 +21815,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1020), [anon_sym___vectorcall] = ACTIONS(1020), [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), [anon_sym_static] = ACTIONS(1020), [anon_sym_auto] = ACTIONS(1020), [anon_sym_register] = ACTIONS(1020), @@ -24161,205 +21862,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token2] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym___attribute__] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym___declspec] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_L_SQUOTE] = ACTIONS(964), - [anon_sym_u_SQUOTE] = ACTIONS(964), - [anon_sym_U_SQUOTE] = ACTIONS(964), - [anon_sym_u8_SQUOTE] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_L_DQUOTE] = ACTIONS(964), - [anon_sym_u_DQUOTE] = ACTIONS(964), - [anon_sym_U_DQUOTE] = ACTIONS(964), - [anon_sym_u8_DQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), + [148] = { + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [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(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_if_token2] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [150] = { + [ts_builtin_sym_end] = ACTIONS(934), + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + }, + [151] = { + [ts_builtin_sym_end] = ACTIONS(938), + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), + [sym_comment] = ACTIONS(3), + }, + [152] = { + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [153] = { + [sym_identifier] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(920), + [anon_sym___declspec] = ACTIONS(918), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [anon_sym__Atomic] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_else] = ACTIONS(1128), [anon_sym_switch] = ACTIONS(918), [anon_sym_case] = ACTIONS(918), [anon_sym_default] = ACTIONS(918), @@ -24389,84 +22318,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(918), [sym_comment] = ACTIONS(3), }, - [182] = { - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_if_token2] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), + [154] = { + [ts_builtin_sym_end] = ACTIONS(950), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [183] = { - [ts_builtin_sym_end] = ACTIONS(916), + [155] = { + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + }, + [156] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), + [sym_comment] = ACTIONS(3), + }, + [157] = { + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [158] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + }, + [159] = { [sym_identifier] = ACTIONS(914), [aux_sym_preproc_include_token1] = ACTIONS(914), [aux_sym_preproc_def_token1] = ACTIONS(914), @@ -24494,6 +22726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(914), [anon_sym___vectorcall] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(916), [anon_sym_static] = ACTIONS(914), [anon_sym_auto] = ACTIONS(914), [anon_sym_register] = ACTIONS(914), @@ -24541,843 +22774,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, - [184] = { - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_if_token2] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_if_token2] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_identifier] = ACTIONS(930), - [aux_sym_preproc_include_token1] = ACTIONS(930), - [aux_sym_preproc_def_token1] = ACTIONS(930), - [aux_sym_preproc_if_token1] = ACTIONS(930), - [aux_sym_preproc_if_token2] = ACTIONS(930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(930), - [sym_preproc_directive] = ACTIONS(930), - [anon_sym_LPAREN2] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_typedef] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(930), - [anon_sym___attribute__] = ACTIONS(930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(932), - [anon_sym___declspec] = ACTIONS(930), - [anon_sym___cdecl] = ACTIONS(930), - [anon_sym___clrcall] = ACTIONS(930), - [anon_sym___stdcall] = ACTIONS(930), - [anon_sym___fastcall] = ACTIONS(930), - [anon_sym___thiscall] = ACTIONS(930), - [anon_sym___vectorcall] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_static] = ACTIONS(930), - [anon_sym_auto] = ACTIONS(930), - [anon_sym_register] = ACTIONS(930), - [anon_sym_inline] = ACTIONS(930), - [anon_sym_const] = ACTIONS(930), - [anon_sym_volatile] = ACTIONS(930), - [anon_sym_restrict] = ACTIONS(930), - [anon_sym__Atomic] = ACTIONS(930), - [anon_sym_signed] = ACTIONS(930), - [anon_sym_unsigned] = ACTIONS(930), - [anon_sym_long] = ACTIONS(930), - [anon_sym_short] = ACTIONS(930), - [sym_primitive_type] = ACTIONS(930), - [anon_sym_enum] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(930), - [anon_sym_case] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_return] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_goto] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(932), - [anon_sym_L_SQUOTE] = ACTIONS(932), - [anon_sym_u_SQUOTE] = ACTIONS(932), - [anon_sym_U_SQUOTE] = ACTIONS(932), - [anon_sym_u8_SQUOTE] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_L_DQUOTE] = ACTIONS(932), - [anon_sym_u_DQUOTE] = ACTIONS(932), - [anon_sym_U_DQUOTE] = ACTIONS(932), - [anon_sym_u8_DQUOTE] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [sym_null] = ACTIONS(930), + [160] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [187] = { - [ts_builtin_sym_end] = ACTIONS(912), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [ts_builtin_sym_end] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym___attribute__] = ACTIONS(958), - [anon_sym_LBRACK_LBRACK] = ACTIONS(960), - [anon_sym___declspec] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [anon_sym_L_SQUOTE] = ACTIONS(960), - [anon_sym_u_SQUOTE] = ACTIONS(960), - [anon_sym_U_SQUOTE] = ACTIONS(960), - [anon_sym_u8_SQUOTE] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_L_DQUOTE] = ACTIONS(960), - [anon_sym_u_DQUOTE] = ACTIONS(960), - [anon_sym_U_DQUOTE] = ACTIONS(960), - [anon_sym_u8_DQUOTE] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [191] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [192] = { - [ts_builtin_sym_end] = ACTIONS(892), - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), - [sym_comment] = ACTIONS(3), - }, - [193] = { - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_if_token2] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), - [sym_comment] = ACTIONS(3), - }, - [194] = { - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [195] = { + [161] = { [sym_identifier] = ACTIONS(898), [aux_sym_preproc_include_token1] = ACTIONS(898), [aux_sym_preproc_def_token1] = ACTIONS(898), @@ -25453,468 +22926,619 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(898), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_if_token2] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), + [162] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [197] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [163] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_identifier] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym___declspec] = ACTIONS(954), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_L_SQUOTE] = ACTIONS(956), - [anon_sym_u_SQUOTE] = ACTIONS(956), - [anon_sym_U_SQUOTE] = ACTIONS(956), - [anon_sym_u8_SQUOTE] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_L_DQUOTE] = ACTIONS(956), - [anon_sym_u_DQUOTE] = ACTIONS(956), - [anon_sym_U_DQUOTE] = ACTIONS(956), - [anon_sym_u8_DQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_null] = ACTIONS(954), + [164] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [199] = { - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), + [165] = { + [sym_identifier] = ACTIONS(902), + [aux_sym_preproc_include_token1] = ACTIONS(902), + [aux_sym_preproc_def_token1] = ACTIONS(902), + [aux_sym_preproc_if_token1] = ACTIONS(902), + [aux_sym_preproc_if_token2] = ACTIONS(902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(902), + [sym_preproc_directive] = ACTIONS(902), + [anon_sym_LPAREN2] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_typedef] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym___attribute__] = ACTIONS(902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(904), + [anon_sym___declspec] = ACTIONS(902), + [anon_sym___cdecl] = ACTIONS(902), + [anon_sym___clrcall] = ACTIONS(902), + [anon_sym___stdcall] = ACTIONS(902), + [anon_sym___fastcall] = ACTIONS(902), + [anon_sym___thiscall] = ACTIONS(902), + [anon_sym___vectorcall] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_static] = ACTIONS(902), + [anon_sym_auto] = ACTIONS(902), + [anon_sym_register] = ACTIONS(902), + [anon_sym_inline] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_restrict] = ACTIONS(902), + [anon_sym__Atomic] = ACTIONS(902), + [anon_sym_signed] = ACTIONS(902), + [anon_sym_unsigned] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [sym_primitive_type] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_goto] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_sizeof] = ACTIONS(902), + [sym_number_literal] = ACTIONS(904), + [anon_sym_L_SQUOTE] = ACTIONS(904), + [anon_sym_u_SQUOTE] = ACTIONS(904), + [anon_sym_U_SQUOTE] = ACTIONS(904), + [anon_sym_u8_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_L_DQUOTE] = ACTIONS(904), + [anon_sym_u_DQUOTE] = ACTIONS(904), + [anon_sym_U_DQUOTE] = ACTIONS(904), + [anon_sym_u8_DQUOTE] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(904), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), [sym_comment] = ACTIONS(3), }, - [200] = { - [sym_identifier] = ACTIONS(930), - [aux_sym_preproc_include_token1] = ACTIONS(930), - [aux_sym_preproc_def_token1] = ACTIONS(930), - [aux_sym_preproc_if_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(930), - [sym_preproc_directive] = ACTIONS(930), - [anon_sym_LPAREN2] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_typedef] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(930), - [anon_sym___attribute__] = ACTIONS(930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(932), - [anon_sym___declspec] = ACTIONS(930), - [anon_sym___cdecl] = ACTIONS(930), - [anon_sym___clrcall] = ACTIONS(930), - [anon_sym___stdcall] = ACTIONS(930), - [anon_sym___fastcall] = ACTIONS(930), - [anon_sym___thiscall] = ACTIONS(930), - [anon_sym___vectorcall] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_static] = ACTIONS(930), - [anon_sym_auto] = ACTIONS(930), - [anon_sym_register] = ACTIONS(930), - [anon_sym_inline] = ACTIONS(930), - [anon_sym_const] = ACTIONS(930), - [anon_sym_volatile] = ACTIONS(930), - [anon_sym_restrict] = ACTIONS(930), - [anon_sym__Atomic] = ACTIONS(930), - [anon_sym_signed] = ACTIONS(930), - [anon_sym_unsigned] = ACTIONS(930), - [anon_sym_long] = ACTIONS(930), - [anon_sym_short] = ACTIONS(930), - [sym_primitive_type] = ACTIONS(930), - [anon_sym_enum] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(930), - [anon_sym_case] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_return] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_goto] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(932), - [anon_sym_L_SQUOTE] = ACTIONS(932), - [anon_sym_u_SQUOTE] = ACTIONS(932), - [anon_sym_U_SQUOTE] = ACTIONS(932), - [anon_sym_u8_SQUOTE] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_L_DQUOTE] = ACTIONS(932), - [anon_sym_u_DQUOTE] = ACTIONS(932), - [anon_sym_U_DQUOTE] = ACTIONS(932), - [anon_sym_u8_DQUOTE] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [sym_null] = ACTIONS(930), + [166] = { + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [167] = { + [ts_builtin_sym_end] = ACTIONS(930), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [202] = { + [168] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [169] = { + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_if_token2] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), + [sym_comment] = ACTIONS(3), + }, + [170] = { [sym_identifier] = ACTIONS(918), [aux_sym_preproc_include_token1] = ACTIONS(918), [aux_sym_preproc_def_token1] = ACTIONS(918), [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), [aux_sym_preproc_ifdef_token1] = ACTIONS(918), [aux_sym_preproc_ifdef_token2] = ACTIONS(918), [sym_preproc_directive] = ACTIONS(918), @@ -25938,6 +23562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(918), [anon_sym___vectorcall] = ACTIONS(918), [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), [anon_sym_static] = ACTIONS(918), [anon_sym_auto] = ACTIONS(918), [anon_sym_register] = ACTIONS(918), @@ -25955,7 +23580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(918), [anon_sym_union] = ACTIONS(918), [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(1130), [anon_sym_switch] = ACTIONS(918), [anon_sym_case] = ACTIONS(918), [anon_sym_default] = ACTIONS(918), @@ -25985,391 +23610,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(918), [sym_comment] = ACTIONS(3), }, - [203] = { - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(950), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(950), - [anon_sym___cdecl] = ACTIONS(950), - [anon_sym___clrcall] = ACTIONS(950), - [anon_sym___stdcall] = ACTIONS(950), - [anon_sym___fastcall] = ACTIONS(950), - [anon_sym___thiscall] = ACTIONS(950), - [anon_sym___vectorcall] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_static] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [anon_sym__Atomic] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_long] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_union] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_default] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_sizeof] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym_u_SQUOTE] = ACTIONS(952), - [anon_sym_U_SQUOTE] = ACTIONS(952), - [anon_sym_u8_SQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_u_DQUOTE] = ACTIONS(952), - [anon_sym_U_DQUOTE] = ACTIONS(952), - [anon_sym_u8_DQUOTE] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), + [171] = { + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_if_token2] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), + [172] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [205] = { - [sym_identifier] = ACTIONS(926), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_if_token2] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), - [anon_sym_LPAREN2] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym___attribute__] = ACTIONS(926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(928), - [anon_sym___declspec] = ACTIONS(926), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_static] = ACTIONS(926), - [anon_sym_auto] = ACTIONS(926), - [anon_sym_register] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_const] = ACTIONS(926), - [anon_sym_volatile] = ACTIONS(926), - [anon_sym_restrict] = ACTIONS(926), - [anon_sym__Atomic] = ACTIONS(926), - [anon_sym_signed] = ACTIONS(926), - [anon_sym_unsigned] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), - [sym_primitive_type] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_struct] = ACTIONS(926), - [anon_sym_union] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(926), - [sym_number_literal] = ACTIONS(928), - [anon_sym_L_SQUOTE] = ACTIONS(928), - [anon_sym_u_SQUOTE] = ACTIONS(928), - [anon_sym_U_SQUOTE] = ACTIONS(928), - [anon_sym_u8_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_L_DQUOTE] = ACTIONS(928), - [anon_sym_u_DQUOTE] = ACTIONS(928), - [anon_sym_U_DQUOTE] = ACTIONS(928), - [anon_sym_u8_DQUOTE] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym_true] = ACTIONS(926), - [sym_false] = ACTIONS(926), - [sym_null] = ACTIONS(926), + [173] = { + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), [sym_comment] = ACTIONS(3), }, - [206] = { - [sym_identifier] = ACTIONS(922), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_if_token2] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), - [anon_sym_LPAREN2] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_typedef] = ACTIONS(922), - [anon_sym_extern] = ACTIONS(922), - [anon_sym___attribute__] = ACTIONS(922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(924), - [anon_sym___declspec] = ACTIONS(922), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_static] = ACTIONS(922), - [anon_sym_auto] = ACTIONS(922), - [anon_sym_register] = ACTIONS(922), - [anon_sym_inline] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_volatile] = ACTIONS(922), - [anon_sym_restrict] = ACTIONS(922), - [anon_sym__Atomic] = ACTIONS(922), - [anon_sym_signed] = ACTIONS(922), - [anon_sym_unsigned] = ACTIONS(922), - [anon_sym_long] = ACTIONS(922), - [anon_sym_short] = ACTIONS(922), - [sym_primitive_type] = ACTIONS(922), - [anon_sym_enum] = ACTIONS(922), - [anon_sym_struct] = ACTIONS(922), - [anon_sym_union] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_goto] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(922), - [sym_number_literal] = ACTIONS(924), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(924), - [anon_sym_u_DQUOTE] = ACTIONS(924), - [anon_sym_U_DQUOTE] = ACTIONS(924), - [anon_sym_u8_DQUOTE] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), + [174] = { + [sym_identifier] = ACTIONS(902), + [aux_sym_preproc_include_token1] = ACTIONS(902), + [aux_sym_preproc_def_token1] = ACTIONS(902), + [aux_sym_preproc_if_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(902), + [sym_preproc_directive] = ACTIONS(902), + [anon_sym_LPAREN2] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_typedef] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym___attribute__] = ACTIONS(902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(904), + [anon_sym___declspec] = ACTIONS(902), + [anon_sym___cdecl] = ACTIONS(902), + [anon_sym___clrcall] = ACTIONS(902), + [anon_sym___stdcall] = ACTIONS(902), + [anon_sym___fastcall] = ACTIONS(902), + [anon_sym___thiscall] = ACTIONS(902), + [anon_sym___vectorcall] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_static] = ACTIONS(902), + [anon_sym_auto] = ACTIONS(902), + [anon_sym_register] = ACTIONS(902), + [anon_sym_inline] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_restrict] = ACTIONS(902), + [anon_sym__Atomic] = ACTIONS(902), + [anon_sym_signed] = ACTIONS(902), + [anon_sym_unsigned] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [sym_primitive_type] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_goto] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_sizeof] = ACTIONS(902), + [sym_number_literal] = ACTIONS(904), + [anon_sym_L_SQUOTE] = ACTIONS(904), + [anon_sym_u_SQUOTE] = ACTIONS(904), + [anon_sym_U_SQUOTE] = ACTIONS(904), + [anon_sym_u8_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_L_DQUOTE] = ACTIONS(904), + [anon_sym_u_DQUOTE] = ACTIONS(904), + [anon_sym_U_DQUOTE] = ACTIONS(904), + [anon_sym_u8_DQUOTE] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(904), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_identifier] = ACTIONS(938), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), - [anon_sym_LPAREN2] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym___attribute__] = ACTIONS(938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(940), - [anon_sym___declspec] = ACTIONS(938), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(940), - [anon_sym_static] = ACTIONS(938), - [anon_sym_auto] = ACTIONS(938), - [anon_sym_register] = ACTIONS(938), - [anon_sym_inline] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_volatile] = ACTIONS(938), - [anon_sym_restrict] = ACTIONS(938), - [anon_sym__Atomic] = ACTIONS(938), - [anon_sym_signed] = ACTIONS(938), - [anon_sym_unsigned] = ACTIONS(938), - [anon_sym_long] = ACTIONS(938), - [anon_sym_short] = ACTIONS(938), - [sym_primitive_type] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_struct] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_goto] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(938), - [sym_number_literal] = ACTIONS(940), - [anon_sym_L_SQUOTE] = ACTIONS(940), - [anon_sym_u_SQUOTE] = ACTIONS(940), - [anon_sym_U_SQUOTE] = ACTIONS(940), - [anon_sym_u8_SQUOTE] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_L_DQUOTE] = ACTIONS(940), - [anon_sym_u_DQUOTE] = ACTIONS(940), - [anon_sym_U_DQUOTE] = ACTIONS(940), - [anon_sym_u8_DQUOTE] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(940), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(938), + [175] = { + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [208] = { + [176] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + }, + [178] = { [sym_identifier] = ACTIONS(890), [aux_sym_preproc_include_token1] = ACTIONS(890), [aux_sym_preproc_def_token1] = ACTIONS(890), [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_if_token2] = ACTIONS(890), [aux_sym_preproc_ifdef_token1] = ACTIONS(890), [aux_sym_preproc_ifdef_token2] = ACTIONS(890), [sym_preproc_directive] = ACTIONS(890), @@ -26393,7 +24171,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(890), [anon_sym___vectorcall] = ACTIONS(890), [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), [anon_sym_static] = ACTIONS(890), [anon_sym_auto] = ACTIONS(890), [anon_sym_register] = ACTIONS(890), @@ -26441,83 +24218,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(940), - [sym_identifier] = ACTIONS(938), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), - [anon_sym_LPAREN2] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym___attribute__] = ACTIONS(938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(940), - [anon_sym___declspec] = ACTIONS(938), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_static] = ACTIONS(938), - [anon_sym_auto] = ACTIONS(938), - [anon_sym_register] = ACTIONS(938), - [anon_sym_inline] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_volatile] = ACTIONS(938), - [anon_sym_restrict] = ACTIONS(938), - [anon_sym__Atomic] = ACTIONS(938), - [anon_sym_signed] = ACTIONS(938), - [anon_sym_unsigned] = ACTIONS(938), - [anon_sym_long] = ACTIONS(938), - [anon_sym_short] = ACTIONS(938), - [sym_primitive_type] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_struct] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_goto] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(938), - [sym_number_literal] = ACTIONS(940), - [anon_sym_L_SQUOTE] = ACTIONS(940), - [anon_sym_u_SQUOTE] = ACTIONS(940), - [anon_sym_U_SQUOTE] = ACTIONS(940), - [anon_sym_u8_SQUOTE] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_L_DQUOTE] = ACTIONS(940), - [anon_sym_u_DQUOTE] = ACTIONS(940), - [anon_sym_U_DQUOTE] = ACTIONS(940), - [anon_sym_u8_DQUOTE] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(940), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(938), + [179] = { + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [210] = { + [180] = { [ts_builtin_sym_end] = ACTIONS(998), [sym_identifier] = ACTIONS(996), [aux_sym_preproc_include_token1] = ACTIONS(996), @@ -26593,7 +24370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [211] = { + [181] = { [sym_identifier] = ACTIONS(890), [aux_sym_preproc_include_token1] = ACTIONS(890), [aux_sym_preproc_def_token1] = ACTIONS(890), @@ -26669,88 +24446,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(1022), - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [213] = { + [182] = { [sym_identifier] = ACTIONS(890), [aux_sym_preproc_include_token1] = ACTIONS(890), [aux_sym_preproc_def_token1] = ACTIONS(890), [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_if_token2] = ACTIONS(890), [aux_sym_preproc_ifdef_token1] = ACTIONS(890), [aux_sym_preproc_ifdef_token2] = ACTIONS(890), [sym_preproc_directive] = ACTIONS(890), @@ -26774,6 +24474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(890), [anon_sym___vectorcall] = ACTIONS(890), [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), [anon_sym_static] = ACTIONS(890), [anon_sym_auto] = ACTIONS(890), [anon_sym_register] = ACTIONS(890), @@ -26821,3849 +24522,3731 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [214] = { - [ts_builtin_sym_end] = ACTIONS(952), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(950), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(950), - [anon_sym___cdecl] = ACTIONS(950), - [anon_sym___clrcall] = ACTIONS(950), - [anon_sym___stdcall] = ACTIONS(950), - [anon_sym___fastcall] = ACTIONS(950), - [anon_sym___thiscall] = ACTIONS(950), - [anon_sym___vectorcall] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_static] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [anon_sym__Atomic] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_long] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_union] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_default] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_sizeof] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym_u_SQUOTE] = ACTIONS(952), - [anon_sym_U_SQUOTE] = ACTIONS(952), - [anon_sym_u8_SQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_u_DQUOTE] = ACTIONS(952), - [anon_sym_U_DQUOTE] = ACTIONS(952), - [anon_sym_u8_DQUOTE] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), + [183] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [215] = { - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_if_token2] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), + [184] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token2] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [216] = { - [sym_identifier] = ACTIONS(938), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_if_token2] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), - [anon_sym_LPAREN2] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym___attribute__] = ACTIONS(938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(940), - [anon_sym___declspec] = ACTIONS(938), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_static] = ACTIONS(938), - [anon_sym_auto] = ACTIONS(938), - [anon_sym_register] = ACTIONS(938), - [anon_sym_inline] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_volatile] = ACTIONS(938), - [anon_sym_restrict] = ACTIONS(938), - [anon_sym__Atomic] = ACTIONS(938), - [anon_sym_signed] = ACTIONS(938), - [anon_sym_unsigned] = ACTIONS(938), - [anon_sym_long] = ACTIONS(938), - [anon_sym_short] = ACTIONS(938), - [sym_primitive_type] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_struct] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_goto] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(938), - [sym_number_literal] = ACTIONS(940), - [anon_sym_L_SQUOTE] = ACTIONS(940), - [anon_sym_u_SQUOTE] = ACTIONS(940), - [anon_sym_U_SQUOTE] = ACTIONS(940), - [anon_sym_u8_SQUOTE] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_L_DQUOTE] = ACTIONS(940), - [anon_sym_u_DQUOTE] = ACTIONS(940), - [anon_sym_U_DQUOTE] = ACTIONS(940), - [anon_sym_u8_DQUOTE] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(940), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(938), + [185] = { + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [217] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), + [186] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [aux_sym_preproc_if_token2] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(950), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(950), - [anon_sym___cdecl] = ACTIONS(950), - [anon_sym___clrcall] = ACTIONS(950), - [anon_sym___stdcall] = ACTIONS(950), - [anon_sym___fastcall] = ACTIONS(950), - [anon_sym___thiscall] = ACTIONS(950), - [anon_sym___vectorcall] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_static] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [anon_sym__Atomic] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_long] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_union] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_default] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_sizeof] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym_u_SQUOTE] = ACTIONS(952), - [anon_sym_U_SQUOTE] = ACTIONS(952), - [anon_sym_u8_SQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_u_DQUOTE] = ACTIONS(952), - [anon_sym_U_DQUOTE] = ACTIONS(952), - [anon_sym_u8_DQUOTE] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), + [187] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [219] = { - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym___attribute__] = ACTIONS(958), - [anon_sym_LBRACK_LBRACK] = ACTIONS(960), - [anon_sym___declspec] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [anon_sym_L_SQUOTE] = ACTIONS(960), - [anon_sym_u_SQUOTE] = ACTIONS(960), - [anon_sym_U_SQUOTE] = ACTIONS(960), - [anon_sym_u8_SQUOTE] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_L_DQUOTE] = ACTIONS(960), - [anon_sym_u_DQUOTE] = ACTIONS(960), - [anon_sym_U_DQUOTE] = ACTIONS(960), - [anon_sym_u8_DQUOTE] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), + [188] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(908), - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), + [189] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym___attribute__] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym___declspec] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_L_SQUOTE] = ACTIONS(964), - [anon_sym_u_SQUOTE] = ACTIONS(964), - [anon_sym_U_SQUOTE] = ACTIONS(964), - [anon_sym_u8_SQUOTE] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_L_DQUOTE] = ACTIONS(964), - [anon_sym_u_DQUOTE] = ACTIONS(964), - [anon_sym_U_DQUOTE] = ACTIONS(964), - [anon_sym_u8_DQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), + [190] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), + [191] = { + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_if_token2] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [223] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym___attribute__] = ACTIONS(958), - [anon_sym_LBRACK_LBRACK] = ACTIONS(960), - [anon_sym___declspec] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [anon_sym_L_SQUOTE] = ACTIONS(960), - [anon_sym_u_SQUOTE] = ACTIONS(960), - [anon_sym_U_SQUOTE] = ACTIONS(960), - [anon_sym_u8_SQUOTE] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_L_DQUOTE] = ACTIONS(960), - [anon_sym_u_DQUOTE] = ACTIONS(960), - [anon_sym_U_DQUOTE] = ACTIONS(960), - [anon_sym_u8_DQUOTE] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), + [192] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [193] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [225] = { - [ts_builtin_sym_end] = ACTIONS(928), - [sym_identifier] = ACTIONS(926), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), - [anon_sym_LPAREN2] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym___attribute__] = ACTIONS(926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(928), - [anon_sym___declspec] = ACTIONS(926), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_static] = ACTIONS(926), - [anon_sym_auto] = ACTIONS(926), - [anon_sym_register] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_const] = ACTIONS(926), - [anon_sym_volatile] = ACTIONS(926), - [anon_sym_restrict] = ACTIONS(926), - [anon_sym__Atomic] = ACTIONS(926), - [anon_sym_signed] = ACTIONS(926), - [anon_sym_unsigned] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), - [sym_primitive_type] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_struct] = ACTIONS(926), - [anon_sym_union] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(926), - [sym_number_literal] = ACTIONS(928), - [anon_sym_L_SQUOTE] = ACTIONS(928), - [anon_sym_u_SQUOTE] = ACTIONS(928), - [anon_sym_U_SQUOTE] = ACTIONS(928), - [anon_sym_u8_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_L_DQUOTE] = ACTIONS(928), - [anon_sym_u_DQUOTE] = ACTIONS(928), - [anon_sym_U_DQUOTE] = ACTIONS(928), - [anon_sym_u8_DQUOTE] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym_true] = ACTIONS(926), - [sym_false] = ACTIONS(926), - [sym_null] = ACTIONS(926), + [194] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_if_token2] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), + [195] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(992), - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(990), - [anon_sym___cdecl] = ACTIONS(990), - [anon_sym___clrcall] = ACTIONS(990), - [anon_sym___stdcall] = ACTIONS(990), - [anon_sym___fastcall] = ACTIONS(990), - [anon_sym___thiscall] = ACTIONS(990), - [anon_sym___vectorcall] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [196] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(988), - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [197] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(964), - [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym___attribute__] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym___declspec] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_L_SQUOTE] = ACTIONS(964), - [anon_sym_u_SQUOTE] = ACTIONS(964), - [anon_sym_U_SQUOTE] = ACTIONS(964), - [anon_sym_u8_SQUOTE] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_L_DQUOTE] = ACTIONS(964), - [anon_sym_u_DQUOTE] = ACTIONS(964), - [anon_sym_U_DQUOTE] = ACTIONS(964), - [anon_sym_u8_DQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), + [198] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(926), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), - [anon_sym_LPAREN2] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym___attribute__] = ACTIONS(926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(928), - [anon_sym___declspec] = ACTIONS(926), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_static] = ACTIONS(926), - [anon_sym_auto] = ACTIONS(926), - [anon_sym_register] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_const] = ACTIONS(926), - [anon_sym_volatile] = ACTIONS(926), - [anon_sym_restrict] = ACTIONS(926), - [anon_sym__Atomic] = ACTIONS(926), - [anon_sym_signed] = ACTIONS(926), - [anon_sym_unsigned] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), - [sym_primitive_type] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_struct] = ACTIONS(926), - [anon_sym_union] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(926), - [sym_number_literal] = ACTIONS(928), - [anon_sym_L_SQUOTE] = ACTIONS(928), - [anon_sym_u_SQUOTE] = ACTIONS(928), - [anon_sym_U_SQUOTE] = ACTIONS(928), - [anon_sym_u8_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_L_DQUOTE] = ACTIONS(928), - [anon_sym_u_DQUOTE] = ACTIONS(928), - [anon_sym_U_DQUOTE] = ACTIONS(928), - [anon_sym_u8_DQUOTE] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym_true] = ACTIONS(926), - [sym_false] = ACTIONS(926), - [sym_null] = ACTIONS(926), + [199] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [231] = { - [sym_attribute_declaration] = STATE(606), - [sym_compound_statement] = STATE(248), - [sym_labeled_statement] = STATE(248), - [sym_expression_statement] = STATE(248), - [sym_if_statement] = STATE(248), - [sym_switch_statement] = STATE(248), - [sym_case_statement] = STATE(248), - [sym_while_statement] = STATE(248), - [sym_do_statement] = STATE(248), - [sym_for_statement] = STATE(248), - [sym_return_statement] = STATE(248), - [sym_break_statement] = STATE(248), - [sym_continue_statement] = STATE(248), - [sym_goto_statement] = STATE(248), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [aux_sym_attributed_declarator_repeat1] = STATE(606), - [sym_identifier] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [200] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(1096), - [aux_sym_preproc_include_token1] = ACTIONS(1096), - [aux_sym_preproc_def_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token2] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym___attribute__] = ACTIONS(1096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), - [anon_sym___declspec] = ACTIONS(1096), - [anon_sym___cdecl] = ACTIONS(1096), - [anon_sym___clrcall] = ACTIONS(1096), - [anon_sym___stdcall] = ACTIONS(1096), - [anon_sym___fastcall] = ACTIONS(1096), - [anon_sym___thiscall] = ACTIONS(1096), - [anon_sym___vectorcall] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_auto] = ACTIONS(1096), - [anon_sym_register] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_volatile] = ACTIONS(1096), - [anon_sym_restrict] = ACTIONS(1096), - [anon_sym__Atomic] = ACTIONS(1096), - [anon_sym_signed] = ACTIONS(1096), - [anon_sym_unsigned] = ACTIONS(1096), - [anon_sym_long] = ACTIONS(1096), - [anon_sym_short] = ACTIONS(1096), - [sym_primitive_type] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_sizeof] = ACTIONS(1096), - [sym_number_literal] = ACTIONS(1098), - [anon_sym_L_SQUOTE] = ACTIONS(1098), - [anon_sym_u_SQUOTE] = ACTIONS(1098), - [anon_sym_U_SQUOTE] = ACTIONS(1098), - [anon_sym_u8_SQUOTE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_L_DQUOTE] = ACTIONS(1098), - [anon_sym_u_DQUOTE] = ACTIONS(1098), - [anon_sym_U_DQUOTE] = ACTIONS(1098), - [anon_sym_u8_DQUOTE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym_true] = ACTIONS(1096), - [sym_false] = ACTIONS(1096), - [sym_null] = ACTIONS(1096), + [201] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [233] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), + [202] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_RBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), + [203] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [235] = { - [sym_identifier] = ACTIONS(1096), - [aux_sym_preproc_include_token1] = ACTIONS(1096), - [aux_sym_preproc_def_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym___attribute__] = ACTIONS(1096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), - [anon_sym___declspec] = ACTIONS(1096), - [anon_sym___cdecl] = ACTIONS(1096), - [anon_sym___clrcall] = ACTIONS(1096), - [anon_sym___stdcall] = ACTIONS(1096), - [anon_sym___fastcall] = ACTIONS(1096), - [anon_sym___thiscall] = ACTIONS(1096), - [anon_sym___vectorcall] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_auto] = ACTIONS(1096), - [anon_sym_register] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_volatile] = ACTIONS(1096), - [anon_sym_restrict] = ACTIONS(1096), - [anon_sym__Atomic] = ACTIONS(1096), - [anon_sym_signed] = ACTIONS(1096), - [anon_sym_unsigned] = ACTIONS(1096), - [anon_sym_long] = ACTIONS(1096), - [anon_sym_short] = ACTIONS(1096), - [sym_primitive_type] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_sizeof] = ACTIONS(1096), - [sym_number_literal] = ACTIONS(1098), - [anon_sym_L_SQUOTE] = ACTIONS(1098), - [anon_sym_u_SQUOTE] = ACTIONS(1098), - [anon_sym_U_SQUOTE] = ACTIONS(1098), - [anon_sym_u8_SQUOTE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_L_DQUOTE] = ACTIONS(1098), - [anon_sym_u_DQUOTE] = ACTIONS(1098), - [anon_sym_U_DQUOTE] = ACTIONS(1098), - [anon_sym_u8_DQUOTE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym_true] = ACTIONS(1096), - [sym_false] = ACTIONS(1096), - [sym_null] = ACTIONS(1096), + [204] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [205] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), + [206] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [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(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [207] = { + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [239] = { - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token2] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), + [208] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_identifier] = ACTIONS(1120), - [aux_sym_preproc_include_token1] = ACTIONS(1120), - [aux_sym_preproc_def_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), - [sym_preproc_directive] = ACTIONS(1120), - [anon_sym_LPAREN2] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym___attribute__] = ACTIONS(1120), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), - [anon_sym___declspec] = ACTIONS(1120), - [anon_sym___cdecl] = ACTIONS(1120), - [anon_sym___clrcall] = ACTIONS(1120), - [anon_sym___stdcall] = ACTIONS(1120), - [anon_sym___fastcall] = ACTIONS(1120), - [anon_sym___thiscall] = ACTIONS(1120), - [anon_sym___vectorcall] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_volatile] = ACTIONS(1120), - [anon_sym_restrict] = ACTIONS(1120), - [anon_sym__Atomic] = ACTIONS(1120), - [anon_sym_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [sym_primitive_type] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_goto] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_L_SQUOTE] = ACTIONS(1122), - [anon_sym_u_SQUOTE] = ACTIONS(1122), - [anon_sym_U_SQUOTE] = ACTIONS(1122), - [anon_sym_u8_SQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_L_DQUOTE] = ACTIONS(1122), - [anon_sym_u_DQUOTE] = ACTIONS(1122), - [anon_sym_U_DQUOTE] = ACTIONS(1122), - [anon_sym_u8_DQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), + [209] = { + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [241] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), - [sym_comment] = ACTIONS(3), - }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [210] = { + [ts_builtin_sym_end] = ACTIONS(926), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), [sym_comment] = ACTIONS(3), }, - [243] = { - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [211] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [244] = { - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), + [212] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [245] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [213] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [246] = { - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token2] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), + [214] = { + [sym_identifier] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(896), + [anon_sym___declspec] = ACTIONS(894), + [anon_sym___cdecl] = ACTIONS(894), + [anon_sym___clrcall] = ACTIONS(894), + [anon_sym___stdcall] = ACTIONS(894), + [anon_sym___fastcall] = ACTIONS(894), + [anon_sym___thiscall] = ACTIONS(894), + [anon_sym___vectorcall] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(896), + [anon_sym_L_SQUOTE] = ACTIONS(896), + [anon_sym_u_SQUOTE] = ACTIONS(896), + [anon_sym_U_SQUOTE] = ACTIONS(896), + [anon_sym_u8_SQUOTE] = ACTIONS(896), + [anon_sym_SQUOTE] = ACTIONS(896), + [anon_sym_L_DQUOTE] = ACTIONS(896), + [anon_sym_u_DQUOTE] = ACTIONS(896), + [anon_sym_U_DQUOTE] = ACTIONS(896), + [anon_sym_u8_DQUOTE] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(896), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), [sym_comment] = ACTIONS(3), }, - [247] = { - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token2] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [215] = { + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [250] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token2] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), + [216] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token2] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), + [217] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [252] = { - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token2] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), + [218] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1088), - [aux_sym_preproc_include_token1] = ACTIONS(1088), - [aux_sym_preproc_def_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), - [sym_preproc_directive] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym___attribute__] = ACTIONS(1088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), - [anon_sym___declspec] = ACTIONS(1088), - [anon_sym___cdecl] = ACTIONS(1088), - [anon_sym___clrcall] = ACTIONS(1088), - [anon_sym___stdcall] = ACTIONS(1088), - [anon_sym___fastcall] = ACTIONS(1088), - [anon_sym___thiscall] = ACTIONS(1088), - [anon_sym___vectorcall] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_auto] = ACTIONS(1088), - [anon_sym_register] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(1088), - [anon_sym_volatile] = ACTIONS(1088), - [anon_sym_restrict] = ACTIONS(1088), - [anon_sym__Atomic] = ACTIONS(1088), - [anon_sym_signed] = ACTIONS(1088), - [anon_sym_unsigned] = ACTIONS(1088), - [anon_sym_long] = ACTIONS(1088), - [anon_sym_short] = ACTIONS(1088), - [sym_primitive_type] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_case] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_goto] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_sizeof] = ACTIONS(1088), - [sym_number_literal] = ACTIONS(1090), - [anon_sym_L_SQUOTE] = ACTIONS(1090), - [anon_sym_u_SQUOTE] = ACTIONS(1090), - [anon_sym_U_SQUOTE] = ACTIONS(1090), - [anon_sym_u8_SQUOTE] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1090), - [anon_sym_L_DQUOTE] = ACTIONS(1090), - [anon_sym_u_DQUOTE] = ACTIONS(1090), - [anon_sym_U_DQUOTE] = ACTIONS(1090), - [anon_sym_u8_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_true] = ACTIONS(1088), - [sym_false] = ACTIONS(1088), - [sym_null] = ACTIONS(1088), + [219] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), - [sym_comment] = ACTIONS(3), - }, - [255] = { - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [220] = { + [sym_identifier] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(894), + [aux_sym_preproc_if_token2] = ACTIONS(894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(896), + [anon_sym___declspec] = ACTIONS(894), + [anon_sym___cdecl] = ACTIONS(894), + [anon_sym___clrcall] = ACTIONS(894), + [anon_sym___stdcall] = ACTIONS(894), + [anon_sym___fastcall] = ACTIONS(894), + [anon_sym___thiscall] = ACTIONS(894), + [anon_sym___vectorcall] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(896), + [anon_sym_L_SQUOTE] = ACTIONS(896), + [anon_sym_u_SQUOTE] = ACTIONS(896), + [anon_sym_U_SQUOTE] = ACTIONS(896), + [anon_sym_u8_SQUOTE] = ACTIONS(896), + [anon_sym_SQUOTE] = ACTIONS(896), + [anon_sym_L_DQUOTE] = ACTIONS(896), + [anon_sym_u_DQUOTE] = ACTIONS(896), + [anon_sym_U_DQUOTE] = ACTIONS(896), + [anon_sym_u8_DQUOTE] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(896), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_attribute_declaration] = STATE(606), - [sym_compound_statement] = STATE(292), - [sym_labeled_statement] = STATE(292), - [sym_expression_statement] = STATE(292), - [sym_if_statement] = STATE(292), - [sym_switch_statement] = STATE(292), - [sym_case_statement] = STATE(292), - [sym_while_statement] = STATE(292), - [sym_do_statement] = STATE(292), - [sym_for_statement] = STATE(292), - [sym_return_statement] = STATE(292), - [sym_break_statement] = STATE(292), - [sym_continue_statement] = STATE(292), - [sym_goto_statement] = STATE(292), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [aux_sym_attributed_declarator_repeat1] = STATE(606), - [sym_identifier] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [221] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_if_token2] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [222] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1070), - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), + [223] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token2] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [224] = { + [ts_builtin_sym_end] = ACTIONS(912), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), + [225] = { + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, - [261] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token2] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [226] = { + [ts_builtin_sym_end] = ACTIONS(904), + [sym_identifier] = ACTIONS(902), + [aux_sym_preproc_include_token1] = ACTIONS(902), + [aux_sym_preproc_def_token1] = ACTIONS(902), + [aux_sym_preproc_if_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(902), + [sym_preproc_directive] = ACTIONS(902), + [anon_sym_LPAREN2] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_typedef] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym___attribute__] = ACTIONS(902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(904), + [anon_sym___declspec] = ACTIONS(902), + [anon_sym___cdecl] = ACTIONS(902), + [anon_sym___clrcall] = ACTIONS(902), + [anon_sym___stdcall] = ACTIONS(902), + [anon_sym___fastcall] = ACTIONS(902), + [anon_sym___thiscall] = ACTIONS(902), + [anon_sym___vectorcall] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_static] = ACTIONS(902), + [anon_sym_auto] = ACTIONS(902), + [anon_sym_register] = ACTIONS(902), + [anon_sym_inline] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_restrict] = ACTIONS(902), + [anon_sym__Atomic] = ACTIONS(902), + [anon_sym_signed] = ACTIONS(902), + [anon_sym_unsigned] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [sym_primitive_type] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_goto] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_sizeof] = ACTIONS(902), + [sym_number_literal] = ACTIONS(904), + [anon_sym_L_SQUOTE] = ACTIONS(904), + [anon_sym_u_SQUOTE] = ACTIONS(904), + [anon_sym_U_SQUOTE] = ACTIONS(904), + [anon_sym_u8_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_L_DQUOTE] = ACTIONS(904), + [anon_sym_u_DQUOTE] = ACTIONS(904), + [anon_sym_U_DQUOTE] = ACTIONS(904), + [anon_sym_u8_DQUOTE] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(904), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), [sym_comment] = ACTIONS(3), }, - [262] = { - [sym_identifier] = ACTIONS(1088), - [aux_sym_preproc_include_token1] = ACTIONS(1088), - [aux_sym_preproc_def_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token2] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), - [sym_preproc_directive] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym___attribute__] = ACTIONS(1088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), - [anon_sym___declspec] = ACTIONS(1088), - [anon_sym___cdecl] = ACTIONS(1088), - [anon_sym___clrcall] = ACTIONS(1088), - [anon_sym___stdcall] = ACTIONS(1088), - [anon_sym___fastcall] = ACTIONS(1088), - [anon_sym___thiscall] = ACTIONS(1088), - [anon_sym___vectorcall] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_auto] = ACTIONS(1088), - [anon_sym_register] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(1088), - [anon_sym_volatile] = ACTIONS(1088), - [anon_sym_restrict] = ACTIONS(1088), - [anon_sym__Atomic] = ACTIONS(1088), - [anon_sym_signed] = ACTIONS(1088), - [anon_sym_unsigned] = ACTIONS(1088), - [anon_sym_long] = ACTIONS(1088), - [anon_sym_short] = ACTIONS(1088), - [sym_primitive_type] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_case] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_goto] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_sizeof] = ACTIONS(1088), - [sym_number_literal] = ACTIONS(1090), - [anon_sym_L_SQUOTE] = ACTIONS(1090), - [anon_sym_u_SQUOTE] = ACTIONS(1090), - [anon_sym_U_SQUOTE] = ACTIONS(1090), - [anon_sym_u8_SQUOTE] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1090), - [anon_sym_L_DQUOTE] = ACTIONS(1090), - [anon_sym_u_DQUOTE] = ACTIONS(1090), - [anon_sym_U_DQUOTE] = ACTIONS(1090), - [anon_sym_u8_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_true] = ACTIONS(1088), - [sym_false] = ACTIONS(1088), - [sym_null] = ACTIONS(1088), + [227] = { + [ts_builtin_sym_end] = ACTIONS(920), + [sym_identifier] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(920), + [anon_sym___declspec] = ACTIONS(918), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [anon_sym__Atomic] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_else] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(918), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_sizeof] = ACTIONS(918), + [sym_number_literal] = ACTIONS(920), + [anon_sym_L_SQUOTE] = ACTIONS(920), + [anon_sym_u_SQUOTE] = ACTIONS(920), + [anon_sym_U_SQUOTE] = ACTIONS(920), + [anon_sym_u8_SQUOTE] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_L_DQUOTE] = ACTIONS(920), + [anon_sym_u_DQUOTE] = ACTIONS(920), + [anon_sym_U_DQUOTE] = ACTIONS(920), + [anon_sym_u8_DQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_true] = ACTIONS(918), + [sym_false] = ACTIONS(918), + [sym_null] = ACTIONS(918), [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token2] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [228] = { + [ts_builtin_sym_end] = ACTIONS(954), + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [264] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [229] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [265] = { + [230] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token2] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [231] = { + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_if_token2] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + }, + [232] = { [sym_identifier] = ACTIONS(1024), [aux_sym_preproc_include_token1] = ACTIONS(1024), [aux_sym_preproc_def_token1] = ACTIONS(1024), @@ -30709,6 +28292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1024), [anon_sym_union] = ACTIONS(1024), [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), [anon_sym_switch] = ACTIONS(1024), [anon_sym_case] = ACTIONS(1024), [anon_sym_default] = ACTIONS(1024), @@ -30738,236 +28322,1814 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), + [233] = { + [ts_builtin_sym_end] = ACTIONS(900), + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [234] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1026), - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [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(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), + [235] = { + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token2] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token2] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [237] = { + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token2] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [239] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [240] = { + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + }, + [241] = { + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [242] = { + [sym_attribute_declaration] = STATE(613), + [sym_compound_statement] = STATE(254), + [sym_labeled_statement] = STATE(254), + [sym_expression_statement] = STATE(254), + [sym_if_statement] = STATE(254), + [sym_switch_statement] = STATE(254), + [sym_case_statement] = STATE(254), + [sym_while_statement] = STATE(254), + [sym_do_statement] = STATE(254), + [sym_for_statement] = STATE(254), + [sym_return_statement] = STATE(254), + [sym_break_statement] = STATE(254), + [sym_continue_statement] = STATE(254), + [sym_goto_statement] = STATE(254), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [aux_sym_attributed_declarator_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [243] = { + [ts_builtin_sym_end] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + }, + [244] = { + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), + [anon_sym___declspec] = ACTIONS(1044), + [anon_sym___cdecl] = ACTIONS(1044), + [anon_sym___clrcall] = ACTIONS(1044), + [anon_sym___stdcall] = ACTIONS(1044), + [anon_sym___fastcall] = ACTIONS(1044), + [anon_sym___thiscall] = ACTIONS(1044), + [anon_sym___vectorcall] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_comment] = ACTIONS(3), + }, + [246] = { + [sym_attribute_declaration] = STATE(613), + [sym_compound_statement] = STATE(249), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [aux_sym_attributed_declarator_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [247] = { + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [248] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token2] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, + [250] = { + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token2] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + }, + [251] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [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(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [252] = { + [sym_attribute_declaration] = STATE(613), + [sym_compound_statement] = STATE(124), + [sym_labeled_statement] = STATE(124), + [sym_expression_statement] = STATE(124), + [sym_if_statement] = STATE(124), + [sym_switch_statement] = STATE(124), + [sym_case_statement] = STATE(124), + [sym_while_statement] = STATE(124), + [sym_do_statement] = STATE(124), + [sym_for_statement] = STATE(124), + [sym_return_statement] = STATE(124), + [sym_break_statement] = STATE(124), + [sym_continue_statement] = STATE(124), + [sym_goto_statement] = STATE(124), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [aux_sym_attributed_declarator_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [253] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token2] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, + [255] = { + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token2] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), + [anon_sym___declspec] = ACTIONS(1044), + [anon_sym___cdecl] = ACTIONS(1044), + [anon_sym___clrcall] = ACTIONS(1044), + [anon_sym___stdcall] = ACTIONS(1044), + [anon_sym___fastcall] = ACTIONS(1044), + [anon_sym___thiscall] = ACTIONS(1044), + [anon_sym___vectorcall] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), [sym_comment] = ACTIONS(3), }, - [269] = { + [256] = { + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + }, + [257] = { [sym_identifier] = ACTIONS(1080), [aux_sym_preproc_include_token1] = ACTIONS(1080), [aux_sym_preproc_def_token1] = ACTIONS(1080), [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token2] = ACTIONS(1080), [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), [sym_preproc_directive] = ACTIONS(1080), @@ -30991,7 +30153,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1080), [anon_sym___vectorcall] = ACTIONS(1080), [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), [anon_sym_static] = ACTIONS(1080), [anon_sym_auto] = ACTIONS(1080), [anon_sym_register] = ACTIONS(1080), @@ -31038,12 +30199,612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [270] = { + [258] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token2] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + }, + [259] = { + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [260] = { + [sym_attribute_declaration] = STATE(613), + [sym_compound_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [aux_sym_attributed_declarator_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [261] = { + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token2] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + }, + [264] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token2] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, + [266] = { + [ts_builtin_sym_end] = ACTIONS(1034), [sym_identifier] = ACTIONS(1032), [aux_sym_preproc_include_token1] = ACTIONS(1032), [aux_sym_preproc_def_token1] = ACTIONS(1032), [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token2] = ACTIONS(1032), [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), [sym_preproc_directive] = ACTIONS(1032), @@ -31113,233 +30874,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [267] = { + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token2] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, - [272] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [268] = { + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [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(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), + [269] = { + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token2] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(1114), + [270] = { [sym_identifier] = ACTIONS(1112), [aux_sym_preproc_include_token1] = ACTIONS(1112), [aux_sym_preproc_def_token1] = ACTIONS(1112), @@ -31367,6 +31127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1112), [anon_sym___vectorcall] = ACTIONS(1112), [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), [anon_sym_static] = ACTIONS(1112), [anon_sym_auto] = ACTIONS(1112), [anon_sym_register] = ACTIONS(1112), @@ -31413,7 +31174,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [275] = { + [271] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token2] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [272] = { [ts_builtin_sym_end] = ACTIONS(1102), [sym_identifier] = ACTIONS(1100), [aux_sym_preproc_include_token1] = ACTIONS(1100), @@ -31488,6 +31324,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, + [273] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, [276] = { [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(1028), @@ -31563,457 +31624,982 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_identifier] = ACTIONS(1096), - [aux_sym_preproc_include_token1] = ACTIONS(1096), - [aux_sym_preproc_def_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym___attribute__] = ACTIONS(1096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), - [anon_sym___declspec] = ACTIONS(1096), - [anon_sym___cdecl] = ACTIONS(1096), - [anon_sym___clrcall] = ACTIONS(1096), - [anon_sym___stdcall] = ACTIONS(1096), - [anon_sym___fastcall] = ACTIONS(1096), - [anon_sym___thiscall] = ACTIONS(1096), - [anon_sym___vectorcall] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_auto] = ACTIONS(1096), - [anon_sym_register] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_volatile] = ACTIONS(1096), - [anon_sym_restrict] = ACTIONS(1096), - [anon_sym__Atomic] = ACTIONS(1096), - [anon_sym_signed] = ACTIONS(1096), - [anon_sym_unsigned] = ACTIONS(1096), - [anon_sym_long] = ACTIONS(1096), - [anon_sym_short] = ACTIONS(1096), - [sym_primitive_type] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_sizeof] = ACTIONS(1096), - [sym_number_literal] = ACTIONS(1098), - [anon_sym_L_SQUOTE] = ACTIONS(1098), - [anon_sym_u_SQUOTE] = ACTIONS(1098), - [anon_sym_U_SQUOTE] = ACTIONS(1098), - [anon_sym_u8_SQUOTE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_L_DQUOTE] = ACTIONS(1098), - [anon_sym_u_DQUOTE] = ACTIONS(1098), - [anon_sym_U_DQUOTE] = ACTIONS(1098), - [anon_sym_u8_DQUOTE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym_true] = ACTIONS(1096), - [sym_false] = ACTIONS(1096), - [sym_null] = ACTIONS(1096), + [277] = { + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token2] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + }, + [278] = { + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + }, + [280] = { + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token2] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [281] = { + [ts_builtin_sym_end] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [278] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [283] = { + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [284] = { + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [285] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + }, + [286] = { + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token2] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), + [287] = { + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [282] = { - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token2] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), + [288] = { + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [283] = { + [289] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token2] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [290] = { [ts_builtin_sym_end] = ACTIONS(1106), [sym_identifier] = ACTIONS(1104), [aux_sym_preproc_include_token1] = ACTIONS(1104), @@ -32088,308 +32674,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [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(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [291] = { + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1094), - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [292] = { + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), + [293] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1078), - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), + [294] = { + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1050), + [295] = { [sym_identifier] = ACTIONS(1048), [aux_sym_preproc_include_token1] = ACTIONS(1048), [aux_sym_preproc_def_token1] = ACTIONS(1048), @@ -32417,6 +33002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1048), [anon_sym___vectorcall] = ACTIONS(1048), [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), [anon_sym_static] = ACTIONS(1048), [anon_sym_auto] = ACTIONS(1048), [anon_sym_register] = ACTIONS(1048), @@ -32463,233 +33049,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1048), [sym_comment] = ACTIONS(3), }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1090), - [sym_identifier] = ACTIONS(1088), - [aux_sym_preproc_include_token1] = ACTIONS(1088), - [aux_sym_preproc_def_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), - [sym_preproc_directive] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym___attribute__] = ACTIONS(1088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), - [anon_sym___declspec] = ACTIONS(1088), - [anon_sym___cdecl] = ACTIONS(1088), - [anon_sym___clrcall] = ACTIONS(1088), - [anon_sym___stdcall] = ACTIONS(1088), - [anon_sym___fastcall] = ACTIONS(1088), - [anon_sym___thiscall] = ACTIONS(1088), - [anon_sym___vectorcall] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_auto] = ACTIONS(1088), - [anon_sym_register] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(1088), - [anon_sym_volatile] = ACTIONS(1088), - [anon_sym_restrict] = ACTIONS(1088), - [anon_sym__Atomic] = ACTIONS(1088), - [anon_sym_signed] = ACTIONS(1088), - [anon_sym_unsigned] = ACTIONS(1088), - [anon_sym_long] = ACTIONS(1088), - [anon_sym_short] = ACTIONS(1088), - [sym_primitive_type] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_case] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_goto] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_sizeof] = ACTIONS(1088), - [sym_number_literal] = ACTIONS(1090), - [anon_sym_L_SQUOTE] = ACTIONS(1090), - [anon_sym_u_SQUOTE] = ACTIONS(1090), - [anon_sym_U_SQUOTE] = ACTIONS(1090), - [anon_sym_u8_SQUOTE] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1090), - [anon_sym_L_DQUOTE] = ACTIONS(1090), - [anon_sym_u_DQUOTE] = ACTIONS(1090), - [anon_sym_U_DQUOTE] = ACTIONS(1090), - [anon_sym_u8_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_true] = ACTIONS(1088), - [sym_false] = ACTIONS(1088), - [sym_null] = ACTIONS(1088), - [sym_comment] = ACTIONS(3), - }, - [290] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token2] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [296] = { + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [291] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token2] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [297] = { + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), + [anon_sym___declspec] = ACTIONS(1044), + [anon_sym___cdecl] = ACTIONS(1044), + [anon_sym___clrcall] = ACTIONS(1044), + [anon_sym___stdcall] = ACTIONS(1044), + [anon_sym___fastcall] = ACTIONS(1044), + [anon_sym___thiscall] = ACTIONS(1044), + [anon_sym___vectorcall] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), [sym_comment] = ACTIONS(3), }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1066), + [298] = { [sym_identifier] = ACTIONS(1064), [aux_sym_preproc_include_token1] = ACTIONS(1064), [aux_sym_preproc_def_token1] = ACTIONS(1064), @@ -32717,6 +33227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1064), [anon_sym___vectorcall] = ACTIONS(1064), [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), [anon_sym_static] = ACTIONS(1064), [anon_sym_auto] = ACTIONS(1064), [anon_sym_register] = ACTIONS(1064), @@ -32763,87 +33274,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(1074), - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [299] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [300] = { + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token2] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [294] = { + [301] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(1030), [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(1028), [aux_sym_preproc_def_token1] = ACTIONS(1028), [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), [sym_preproc_directive] = ACTIONS(1028), @@ -32913,341 +33574,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_attribute_declaration] = STATE(606), - [sym_compound_statement] = STATE(279), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [aux_sym_attributed_declarator_repeat1] = STATE(606), - [sym_identifier] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [sym_identifier] = ACTIONS(1120), - [aux_sym_preproc_include_token1] = ACTIONS(1120), - [aux_sym_preproc_def_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), - [sym_preproc_directive] = ACTIONS(1120), - [anon_sym_LPAREN2] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym___attribute__] = ACTIONS(1120), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), - [anon_sym___declspec] = ACTIONS(1120), - [anon_sym___cdecl] = ACTIONS(1120), - [anon_sym___clrcall] = ACTIONS(1120), - [anon_sym___stdcall] = ACTIONS(1120), - [anon_sym___fastcall] = ACTIONS(1120), - [anon_sym___thiscall] = ACTIONS(1120), - [anon_sym___vectorcall] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_volatile] = ACTIONS(1120), - [anon_sym_restrict] = ACTIONS(1120), - [anon_sym__Atomic] = ACTIONS(1120), - [anon_sym_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [sym_primitive_type] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_goto] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_L_SQUOTE] = ACTIONS(1122), - [anon_sym_u_SQUOTE] = ACTIONS(1122), - [anon_sym_U_SQUOTE] = ACTIONS(1122), - [anon_sym_u8_SQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_L_DQUOTE] = ACTIONS(1122), - [anon_sym_u_DQUOTE] = ACTIONS(1122), - [anon_sym_U_DQUOTE] = ACTIONS(1122), - [anon_sym_u8_DQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), - [sym_comment] = ACTIONS(3), - }, - [297] = { - [sym_identifier] = ACTIONS(1120), - [aux_sym_preproc_include_token1] = ACTIONS(1120), - [aux_sym_preproc_def_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token2] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), - [sym_preproc_directive] = ACTIONS(1120), - [anon_sym_LPAREN2] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym___attribute__] = ACTIONS(1120), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), - [anon_sym___declspec] = ACTIONS(1120), - [anon_sym___cdecl] = ACTIONS(1120), - [anon_sym___clrcall] = ACTIONS(1120), - [anon_sym___stdcall] = ACTIONS(1120), - [anon_sym___fastcall] = ACTIONS(1120), - [anon_sym___thiscall] = ACTIONS(1120), - [anon_sym___vectorcall] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_volatile] = ACTIONS(1120), - [anon_sym_restrict] = ACTIONS(1120), - [anon_sym__Atomic] = ACTIONS(1120), - [anon_sym_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [sym_primitive_type] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_goto] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_L_SQUOTE] = ACTIONS(1122), - [anon_sym_u_SQUOTE] = ACTIONS(1122), - [anon_sym_U_SQUOTE] = ACTIONS(1122), - [anon_sym_u8_SQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_L_DQUOTE] = ACTIONS(1122), - [anon_sym_u_DQUOTE] = ACTIONS(1122), - [anon_sym_U_DQUOTE] = ACTIONS(1122), - [anon_sym_u8_DQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), + [303] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), + [304] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token2] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), [sym_comment] = ACTIONS(3), }, - [299] = { - [sym_attribute_declaration] = STATE(606), - [sym_compound_statement] = STATE(111), - [sym_labeled_statement] = STATE(111), - [sym_expression_statement] = STATE(111), - [sym_if_statement] = STATE(111), - [sym_switch_statement] = STATE(111), - [sym_case_statement] = STATE(111), - [sym_while_statement] = STATE(111), - [sym_do_statement] = STATE(111), - [sym_for_statement] = STATE(111), - [sym_return_statement] = STATE(111), - [sym_break_statement] = STATE(111), - [sym_continue_statement] = STATE(111), - [sym_goto_statement] = STATE(111), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [aux_sym_attributed_declarator_repeat1] = STATE(606), - [sym_identifier] = ACTIONS(1138), + [305] = { + [sym_compound_statement] = STATE(100), + [sym_labeled_statement] = STATE(100), + [sym_expression_statement] = STATE(100), + [sym_if_statement] = STATE(100), + [sym_switch_statement] = STATE(100), + [sym_case_statement] = STATE(100), + [sym_while_statement] = STATE(100), + [sym_do_statement] = STATE(100), + [sym_for_statement] = STATE(100), + [sym_return_statement] = STATE(100), + [sym_break_statement] = STATE(100), + [sym_continue_statement] = STATE(100), + [sym_goto_statement] = STATE(100), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33256,7 +33765,6 @@ 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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_if] = ACTIONS(117), [anon_sym_switch] = ACTIONS(119), @@ -33288,114 +33796,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, - [301] = { - [sym_compound_statement] = STATE(148), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [306] = { + [sym_compound_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__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33403,19 +33836,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33435,39 +33868,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_compound_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [307] = { + [sym_compound_statement] = STATE(207), + [sym_labeled_statement] = STATE(207), + [sym_expression_statement] = STATE(207), + [sym_if_statement] = STATE(207), + [sym_switch_statement] = STATE(207), + [sym_case_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_do_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_return_statement] = STATE(207), + [sym_break_statement] = STATE(207), + [sym_continue_statement] = STATE(207), + [sym_goto_statement] = STATE(207), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33475,19 +33908,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33507,39 +33940,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_compound_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_case_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [308] = { + [sym_compound_statement] = STATE(206), + [sym_labeled_statement] = STATE(206), + [sym_expression_statement] = STATE(206), + [sym_if_statement] = STATE(206), + [sym_switch_statement] = STATE(206), + [sym_case_statement] = STATE(206), + [sym_while_statement] = STATE(206), + [sym_do_statement] = STATE(206), + [sym_for_statement] = STATE(206), + [sym_return_statement] = STATE(206), + [sym_break_statement] = STATE(206), + [sym_continue_statement] = STATE(206), + [sym_goto_statement] = STATE(206), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33547,19 +33980,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33579,39 +34012,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_compound_statement] = STATE(96), - [sym_labeled_statement] = STATE(96), - [sym_expression_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_switch_statement] = STATE(96), - [sym_case_statement] = STATE(96), - [sym_while_statement] = STATE(96), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(96), - [sym_return_statement] = STATE(96), - [sym_break_statement] = STATE(96), - [sym_continue_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [309] = { + [sym_compound_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_switch_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_goto_statement] = STATE(203), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33619,19 +34052,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33651,39 +34084,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_compound_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_case_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [310] = { + [sym_compound_statement] = STATE(202), + [sym_labeled_statement] = STATE(202), + [sym_expression_statement] = STATE(202), + [sym_if_statement] = STATE(202), + [sym_switch_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_do_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_return_statement] = STATE(202), + [sym_break_statement] = STATE(202), + [sym_continue_statement] = STATE(202), + [sym_goto_statement] = STATE(202), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33691,19 +34124,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33723,39 +34156,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_compound_statement] = STATE(85), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [311] = { + [sym_compound_statement] = STATE(200), + [sym_labeled_statement] = STATE(200), + [sym_expression_statement] = STATE(200), + [sym_if_statement] = STATE(200), + [sym_switch_statement] = STATE(200), + [sym_case_statement] = STATE(200), + [sym_while_statement] = STATE(200), + [sym_do_statement] = STATE(200), + [sym_for_statement] = STATE(200), + [sym_return_statement] = STATE(200), + [sym_break_statement] = STATE(200), + [sym_continue_statement] = STATE(200), + [sym_goto_statement] = STATE(200), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33763,19 +34196,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33795,38 +34228,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_compound_statement] = STATE(1438), - [sym_labeled_statement] = STATE(1438), - [sym_expression_statement] = STATE(1438), - [sym_if_statement] = STATE(1438), - [sym_switch_statement] = STATE(1438), - [sym_case_statement] = STATE(1438), - [sym_while_statement] = STATE(1438), - [sym_do_statement] = STATE(1438), - [sym_for_statement] = STATE(1438), - [sym_return_statement] = STATE(1438), - [sym_break_statement] = STATE(1438), - [sym_continue_statement] = STATE(1438), - [sym_goto_statement] = STATE(1438), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [312] = { + [sym_compound_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__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -33867,38 +34300,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_compound_statement] = STATE(227), - [sym_labeled_statement] = STATE(227), - [sym_expression_statement] = STATE(227), - [sym_if_statement] = STATE(227), - [sym_switch_statement] = STATE(227), - [sym_case_statement] = STATE(227), - [sym_while_statement] = STATE(227), - [sym_do_statement] = STATE(227), - [sym_for_statement] = STATE(227), - [sym_return_statement] = STATE(227), - [sym_break_statement] = STATE(227), - [sym_continue_statement] = STATE(227), - [sym_goto_statement] = STATE(227), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [313] = { + [sym_compound_statement] = STATE(199), + [sym_labeled_statement] = STATE(199), + [sym_expression_statement] = STATE(199), + [sym_if_statement] = STATE(199), + [sym_switch_statement] = STATE(199), + [sym_case_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_do_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_return_statement] = STATE(199), + [sym_break_statement] = STATE(199), + [sym_continue_statement] = STATE(199), + [sym_goto_statement] = STATE(199), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [sym_compound_statement] = STATE(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_case_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [315] = { + [sym_compound_statement] = STATE(1446), + [sym_labeled_statement] = STATE(1446), + [sym_expression_statement] = STATE(1446), + [sym_if_statement] = STATE(1446), + [sym_switch_statement] = STATE(1446), + [sym_case_statement] = STATE(1446), + [sym_while_statement] = STATE(1446), + [sym_do_statement] = STATE(1446), + [sym_for_statement] = STATE(1446), + [sym_return_statement] = STATE(1446), + [sym_break_statement] = STATE(1446), + [sym_continue_statement] = STATE(1446), + [sym_goto_statement] = STATE(1446), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -33939,39 +34516,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_compound_statement] = STATE(207), - [sym_labeled_statement] = STATE(207), - [sym_expression_statement] = STATE(207), - [sym_if_statement] = STATE(207), - [sym_switch_statement] = STATE(207), - [sym_case_statement] = STATE(207), - [sym_while_statement] = STATE(207), - [sym_do_statement] = STATE(207), - [sym_for_statement] = STATE(207), - [sym_return_statement] = STATE(207), - [sym_break_statement] = STATE(207), - [sym_continue_statement] = STATE(207), - [sym_goto_statement] = STATE(207), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [316] = { + [sym_compound_statement] = STATE(169), + [sym_labeled_statement] = STATE(169), + [sym_expression_statement] = STATE(169), + [sym_if_statement] = STATE(169), + [sym_switch_statement] = STATE(169), + [sym_case_statement] = STATE(169), + [sym_while_statement] = STATE(169), + [sym_do_statement] = STATE(169), + [sym_for_statement] = STATE(169), + [sym_return_statement] = STATE(169), + [sym_break_statement] = STATE(169), + [sym_continue_statement] = STATE(169), + [sym_goto_statement] = STATE(169), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33979,19 +34556,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34011,39 +34588,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [310] = { - [sym_compound_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_case_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [317] = { + [sym_compound_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_case_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34083,39 +34660,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_compound_statement] = STATE(166), - [sym_labeled_statement] = STATE(166), - [sym_expression_statement] = STATE(166), - [sym_if_statement] = STATE(166), - [sym_switch_statement] = STATE(166), - [sym_case_statement] = STATE(166), - [sym_while_statement] = STATE(166), - [sym_do_statement] = STATE(166), - [sym_for_statement] = STATE(166), - [sym_return_statement] = STATE(166), - [sym_break_statement] = STATE(166), - [sym_continue_statement] = STATE(166), - [sym_goto_statement] = STATE(166), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1134), + [318] = { + [sym_compound_statement] = STATE(208), + [sym_labeled_statement] = STATE(208), + [sym_expression_statement] = STATE(208), + [sym_if_statement] = STATE(208), + [sym_switch_statement] = STATE(208), + [sym_case_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_do_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_return_statement] = STATE(208), + [sym_break_statement] = STATE(208), + [sym_continue_statement] = STATE(208), + [sym_goto_statement] = STATE(208), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34123,19 +34700,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [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_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34155,39 +34732,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym_compound_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_case_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [319] = { + [sym_compound_statement] = STATE(227), + [sym_labeled_statement] = STATE(227), + [sym_expression_statement] = STATE(227), + [sym_if_statement] = STATE(227), + [sym_switch_statement] = STATE(227), + [sym_case_statement] = STATE(227), + [sym_while_statement] = STATE(227), + [sym_do_statement] = STATE(227), + [sym_for_statement] = STATE(227), + [sym_return_statement] = STATE(227), + [sym_break_statement] = STATE(227), + [sym_continue_statement] = STATE(227), + [sym_goto_statement] = STATE(227), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34195,19 +34772,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34227,39 +34804,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [313] = { - [sym_compound_statement] = STATE(101), - [sym_labeled_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_if_statement] = STATE(101), - [sym_switch_statement] = STATE(101), - [sym_case_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_break_statement] = STATE(101), - [sym_continue_statement] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [320] = { + [sym_compound_statement] = STATE(142), + [sym_labeled_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym_if_statement] = STATE(142), + [sym_switch_statement] = STATE(142), + [sym_case_statement] = STATE(142), + [sym_while_statement] = STATE(142), + [sym_do_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym_return_statement] = STATE(142), + [sym_break_statement] = STATE(142), + [sym_continue_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34267,19 +34844,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34299,38 +34876,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [314] = { - [sym_compound_statement] = STATE(229), - [sym_labeled_statement] = STATE(229), - [sym_expression_statement] = STATE(229), - [sym_if_statement] = STATE(229), - [sym_switch_statement] = STATE(229), - [sym_case_statement] = STATE(229), - [sym_while_statement] = STATE(229), - [sym_do_statement] = STATE(229), - [sym_for_statement] = STATE(229), - [sym_return_statement] = STATE(229), - [sym_break_statement] = STATE(229), - [sym_continue_statement] = STATE(229), - [sym_goto_statement] = STATE(229), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [321] = { + [sym_compound_statement] = STATE(233), + [sym_labeled_statement] = STATE(233), + [sym_expression_statement] = STATE(233), + [sym_if_statement] = STATE(233), + [sym_switch_statement] = STATE(233), + [sym_case_statement] = STATE(233), + [sym_while_statement] = STATE(233), + [sym_do_statement] = STATE(233), + [sym_for_statement] = STATE(233), + [sym_return_statement] = STATE(233), + [sym_break_statement] = STATE(233), + [sym_continue_statement] = STATE(233), + [sym_goto_statement] = STATE(233), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34371,38 +34948,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [315] = { - [sym_compound_statement] = STATE(1429), - [sym_labeled_statement] = STATE(1429), - [sym_expression_statement] = STATE(1429), - [sym_if_statement] = STATE(1429), - [sym_switch_statement] = STATE(1429), - [sym_case_statement] = STATE(1429), - [sym_while_statement] = STATE(1429), - [sym_do_statement] = STATE(1429), - [sym_for_statement] = STATE(1429), - [sym_return_statement] = STATE(1429), - [sym_break_statement] = STATE(1429), - [sym_continue_statement] = STATE(1429), - [sym_goto_statement] = STATE(1429), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [322] = { + [sym_attribute_declaration] = STATE(613), + [sym_compound_statement] = STATE(151), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [aux_sym_attributed_declarator_repeat1] = STATE(613), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34412,11 +34990,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), [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), @@ -34443,39 +35020,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [316] = { - [sym_compound_statement] = STATE(221), - [sym_labeled_statement] = STATE(221), - [sym_expression_statement] = STATE(221), - [sym_if_statement] = STATE(221), - [sym_switch_statement] = STATE(221), - [sym_case_statement] = STATE(221), - [sym_while_statement] = STATE(221), - [sym_do_statement] = STATE(221), - [sym_for_statement] = STATE(221), - [sym_return_statement] = STATE(221), - [sym_break_statement] = STATE(221), - [sym_continue_statement] = STATE(221), - [sym_goto_statement] = STATE(221), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [323] = { + [sym_compound_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__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34483,19 +35060,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34515,39 +35092,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_compound_statement] = STATE(138), - [sym_labeled_statement] = STATE(138), - [sym_expression_statement] = STATE(138), - [sym_if_statement] = STATE(138), - [sym_switch_statement] = STATE(138), - [sym_case_statement] = STATE(138), - [sym_while_statement] = STATE(138), - [sym_do_statement] = STATE(138), - [sym_for_statement] = STATE(138), - [sym_return_statement] = STATE(138), - [sym_break_statement] = STATE(138), - [sym_continue_statement] = STATE(138), - [sym_goto_statement] = STATE(138), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [324] = { + [sym_compound_statement] = STATE(161), + [sym_labeled_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_if_statement] = STATE(161), + [sym_switch_statement] = STATE(161), + [sym_case_statement] = STATE(161), + [sym_while_statement] = STATE(161), + [sym_do_statement] = STATE(161), + [sym_for_statement] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_break_statement] = STATE(161), + [sym_continue_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34555,19 +35132,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34587,39 +35164,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_compound_statement] = STATE(126), - [sym_labeled_statement] = STATE(126), - [sym_expression_statement] = STATE(126), - [sym_if_statement] = STATE(126), - [sym_switch_statement] = STATE(126), - [sym_case_statement] = STATE(126), - [sym_while_statement] = STATE(126), - [sym_do_statement] = STATE(126), - [sym_for_statement] = STATE(126), - [sym_return_statement] = STATE(126), - [sym_break_statement] = STATE(126), - [sym_continue_statement] = STATE(126), - [sym_goto_statement] = STATE(126), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [325] = { + [sym_compound_statement] = STATE(195), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34627,19 +35204,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34659,39 +35236,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [319] = { - [sym_compound_statement] = STATE(194), - [sym_labeled_statement] = STATE(194), - [sym_expression_statement] = STATE(194), - [sym_if_statement] = STATE(194), - [sym_switch_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_do_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_return_statement] = STATE(194), - [sym_break_statement] = STATE(194), - [sym_continue_statement] = STATE(194), - [sym_goto_statement] = STATE(194), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1134), + [326] = { + [sym_compound_statement] = STATE(231), + [sym_labeled_statement] = STATE(231), + [sym_expression_statement] = STATE(231), + [sym_if_statement] = STATE(231), + [sym_switch_statement] = STATE(231), + [sym_case_statement] = STATE(231), + [sym_while_statement] = STATE(231), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(231), + [sym_return_statement] = STATE(231), + [sym_break_statement] = STATE(231), + [sym_continue_statement] = STATE(231), + [sym_goto_statement] = STATE(231), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34699,19 +35276,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [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_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34731,39 +35308,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_compound_statement] = STATE(167), - [sym_labeled_statement] = STATE(167), - [sym_expression_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_switch_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_while_statement] = STATE(167), - [sym_do_statement] = STATE(167), - [sym_for_statement] = STATE(167), - [sym_return_statement] = STATE(167), - [sym_break_statement] = STATE(167), - [sym_continue_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [327] = { + [sym_compound_statement] = STATE(1437), + [sym_labeled_statement] = STATE(1437), + [sym_expression_statement] = STATE(1437), + [sym_if_statement] = STATE(1437), + [sym_switch_statement] = STATE(1437), + [sym_case_statement] = STATE(1437), + [sym_while_statement] = STATE(1437), + [sym_do_statement] = STATE(1437), + [sym_for_statement] = STATE(1437), + [sym_return_statement] = STATE(1437), + [sym_break_statement] = STATE(1437), + [sym_continue_statement] = STATE(1437), + [sym_goto_statement] = STATE(1437), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34771,19 +35348,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34803,39 +35380,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_compound_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_case_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [328] = { + [sym_compound_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_case_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34875,39 +35452,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_compound_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_switch_statement] = STATE(204), - [sym_case_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_goto_statement] = STATE(204), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1134), + [329] = { + [sym_compound_statement] = STATE(153), + [sym_labeled_statement] = STATE(153), + [sym_expression_statement] = STATE(153), + [sym_if_statement] = STATE(153), + [sym_switch_statement] = STATE(153), + [sym_case_statement] = STATE(153), + [sym_while_statement] = STATE(153), + [sym_do_statement] = STATE(153), + [sym_for_statement] = STATE(153), + [sym_return_statement] = STATE(153), + [sym_break_statement] = STATE(153), + [sym_continue_statement] = STATE(153), + [sym_goto_statement] = STATE(153), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34915,19 +35492,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [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_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34947,38 +35524,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [323] = { - [sym_compound_statement] = STATE(165), - [sym_labeled_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_switch_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_while_statement] = STATE(165), - [sym_do_statement] = STATE(165), - [sym_for_statement] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_break_statement] = STATE(165), - [sym_continue_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [330] = { + [sym_compound_statement] = STATE(1426), + [sym_labeled_statement] = STATE(1426), + [sym_expression_statement] = STATE(1426), + [sym_if_statement] = STATE(1426), + [sym_switch_statement] = STATE(1426), + [sym_case_statement] = STATE(1426), + [sym_while_statement] = STATE(1426), + [sym_do_statement] = STATE(1426), + [sym_for_statement] = STATE(1426), + [sym_return_statement] = STATE(1426), + [sym_break_statement] = STATE(1426), + [sym_continue_statement] = STATE(1426), + [sym_goto_statement] = STATE(1426), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35019,39 +35596,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_compound_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_case_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [331] = { + [sym_compound_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_case_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35091,39 +35668,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [325] = { - [sym_compound_statement] = STATE(142), - [sym_labeled_statement] = STATE(142), - [sym_expression_statement] = STATE(142), - [sym_if_statement] = STATE(142), - [sym_switch_statement] = STATE(142), - [sym_case_statement] = STATE(142), - [sym_while_statement] = STATE(142), - [sym_do_statement] = STATE(142), - [sym_for_statement] = STATE(142), - [sym_return_statement] = STATE(142), - [sym_break_statement] = STATE(142), - [sym_continue_statement] = STATE(142), - [sym_goto_statement] = STATE(142), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [332] = { + [sym_compound_statement] = STATE(220), + [sym_labeled_statement] = STATE(220), + [sym_expression_statement] = STATE(220), + [sym_if_statement] = STATE(220), + [sym_switch_statement] = STATE(220), + [sym_case_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_do_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_return_statement] = STATE(220), + [sym_break_statement] = STATE(220), + [sym_continue_statement] = STATE(220), + [sym_goto_statement] = STATE(220), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35131,19 +35708,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35163,39 +35740,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_compound_statement] = STATE(198), - [sym_labeled_statement] = STATE(198), - [sym_expression_statement] = STATE(198), - [sym_if_statement] = STATE(198), - [sym_switch_statement] = STATE(198), - [sym_case_statement] = STATE(198), - [sym_while_statement] = STATE(198), - [sym_do_statement] = STATE(198), - [sym_for_statement] = STATE(198), - [sym_return_statement] = STATE(198), - [sym_break_statement] = STATE(198), - [sym_continue_statement] = STATE(198), - [sym_goto_statement] = STATE(198), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [333] = { + [sym_compound_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_case_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35203,19 +35780,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35235,39 +35812,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_compound_statement] = STATE(180), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [334] = { + [sym_attribute_declaration] = STATE(613), + [sym_compound_statement] = STATE(185), + [sym_labeled_statement] = STATE(185), + [sym_expression_statement] = STATE(185), + [sym_if_statement] = STATE(185), + [sym_switch_statement] = STATE(185), + [sym_while_statement] = STATE(185), + [sym_do_statement] = STATE(185), + [sym_for_statement] = STATE(185), + [sym_return_statement] = STATE(185), + [sym_break_statement] = STATE(185), + [sym_continue_statement] = STATE(185), + [sym_goto_statement] = STATE(185), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [aux_sym_attributed_declarator_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35275,19 +35853,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35307,39 +35884,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_compound_statement] = STATE(144), - [sym_labeled_statement] = STATE(144), - [sym_expression_statement] = STATE(144), - [sym_if_statement] = STATE(144), - [sym_switch_statement] = STATE(144), - [sym_case_statement] = STATE(144), - [sym_while_statement] = STATE(144), - [sym_do_statement] = STATE(144), - [sym_for_statement] = STATE(144), - [sym_return_statement] = STATE(144), - [sym_break_statement] = STATE(144), - [sym_continue_statement] = STATE(144), - [sym_goto_statement] = STATE(144), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [335] = { + [sym_compound_statement] = STATE(98), + [sym_labeled_statement] = STATE(98), + [sym_expression_statement] = STATE(98), + [sym_if_statement] = STATE(98), + [sym_switch_statement] = STATE(98), + [sym_case_statement] = STATE(98), + [sym_while_statement] = STATE(98), + [sym_do_statement] = STATE(98), + [sym_for_statement] = STATE(98), + [sym_return_statement] = STATE(98), + [sym_break_statement] = STATE(98), + [sym_continue_statement] = STATE(98), + [sym_goto_statement] = STATE(98), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35347,19 +35924,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35379,39 +35956,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_compound_statement] = STATE(175), - [sym_labeled_statement] = STATE(175), - [sym_expression_statement] = STATE(175), - [sym_if_statement] = STATE(175), - [sym_switch_statement] = STATE(175), - [sym_case_statement] = STATE(175), - [sym_while_statement] = STATE(175), - [sym_do_statement] = STATE(175), - [sym_for_statement] = STATE(175), - [sym_return_statement] = STATE(175), - [sym_break_statement] = STATE(175), - [sym_continue_statement] = STATE(175), - [sym_goto_statement] = STATE(175), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [336] = { + [sym_compound_statement] = STATE(232), + [sym_labeled_statement] = STATE(232), + [sym_expression_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_switch_statement] = STATE(232), + [sym_case_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_do_statement] = STATE(232), + [sym_for_statement] = STATE(232), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(232), + [sym_continue_statement] = STATE(232), + [sym_goto_statement] = STATE(232), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35419,19 +35996,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35451,39 +36028,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [330] = { - [sym_compound_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [337] = { + [sym_compound_statement] = STATE(99), + [sym_labeled_statement] = STATE(99), + [sym_expression_statement] = STATE(99), + [sym_if_statement] = STATE(99), + [sym_switch_statement] = STATE(99), + [sym_case_statement] = STATE(99), + [sym_while_statement] = STATE(99), + [sym_do_statement] = STATE(99), + [sym_for_statement] = STATE(99), + [sym_return_statement] = STATE(99), + [sym_break_statement] = STATE(99), + [sym_continue_statement] = STATE(99), + [sym_goto_statement] = STATE(99), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35523,39 +36100,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_compound_statement] = STATE(154), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [338] = { + [sym_compound_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35563,19 +36140,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35595,38 +36172,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [332] = { - [sym_compound_statement] = STATE(160), - [sym_labeled_statement] = STATE(160), - [sym_expression_statement] = STATE(160), - [sym_if_statement] = STATE(160), - [sym_switch_statement] = STATE(160), - [sym_case_statement] = STATE(160), - [sym_while_statement] = STATE(160), - [sym_do_statement] = STATE(160), - [sym_for_statement] = STATE(160), - [sym_return_statement] = STATE(160), - [sym_break_statement] = STATE(160), - [sym_continue_statement] = STATE(160), - [sym_goto_statement] = STATE(160), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [339] = { + [sym_compound_statement] = STATE(145), + [sym_labeled_statement] = STATE(145), + [sym_expression_statement] = STATE(145), + [sym_if_statement] = STATE(145), + [sym_switch_statement] = STATE(145), + [sym_case_statement] = STATE(145), + [sym_while_statement] = STATE(145), + [sym_do_statement] = STATE(145), + [sym_for_statement] = STATE(145), + [sym_return_statement] = STATE(145), + [sym_break_statement] = STATE(145), + [sym_continue_statement] = STATE(145), + [sym_goto_statement] = STATE(145), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35667,39 +36244,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_compound_statement] = STATE(157), - [sym_labeled_statement] = STATE(157), - [sym_expression_statement] = STATE(157), - [sym_if_statement] = STATE(157), - [sym_switch_statement] = STATE(157), - [sym_case_statement] = STATE(157), - [sym_while_statement] = STATE(157), - [sym_do_statement] = STATE(157), - [sym_for_statement] = STATE(157), - [sym_return_statement] = STATE(157), - [sym_break_statement] = STATE(157), - [sym_continue_statement] = STATE(157), - [sym_goto_statement] = STATE(157), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [340] = { + [sym_compound_statement] = STATE(221), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35707,19 +36284,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35739,39 +36316,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_compound_statement] = STATE(159), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [341] = { + [sym_compound_statement] = STATE(211), + [sym_labeled_statement] = STATE(211), + [sym_expression_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_switch_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_do_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(211), + [sym_break_statement] = STATE(211), + [sym_continue_statement] = STATE(211), + [sym_goto_statement] = STATE(211), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35779,19 +36356,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35811,38 +36388,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [335] = { - [sym_compound_statement] = STATE(1418), - [sym_labeled_statement] = STATE(1418), - [sym_expression_statement] = STATE(1418), - [sym_if_statement] = STATE(1418), - [sym_switch_statement] = STATE(1418), - [sym_case_statement] = STATE(1418), - [sym_while_statement] = STATE(1418), - [sym_do_statement] = STATE(1418), - [sym_for_statement] = STATE(1418), - [sym_return_statement] = STATE(1418), - [sym_break_statement] = STATE(1418), - [sym_continue_statement] = STATE(1418), - [sym_goto_statement] = STATE(1418), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [342] = { + [sym_compound_statement] = STATE(157), + [sym_labeled_statement] = STATE(157), + [sym_expression_statement] = STATE(157), + [sym_if_statement] = STATE(157), + [sym_switch_statement] = STATE(157), + [sym_case_statement] = STATE(157), + [sym_while_statement] = STATE(157), + [sym_do_statement] = STATE(157), + [sym_for_statement] = STATE(157), + [sym_return_statement] = STATE(157), + [sym_break_statement] = STATE(157), + [sym_continue_statement] = STATE(157), + [sym_goto_statement] = STATE(157), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35883,39 +36460,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_compound_statement] = STATE(135), - [sym_labeled_statement] = STATE(135), - [sym_expression_statement] = STATE(135), - [sym_if_statement] = STATE(135), - [sym_switch_statement] = STATE(135), - [sym_case_statement] = STATE(135), - [sym_while_statement] = STATE(135), - [sym_do_statement] = STATE(135), - [sym_for_statement] = STATE(135), - [sym_return_statement] = STATE(135), - [sym_break_statement] = STATE(135), - [sym_continue_statement] = STATE(135), - [sym_goto_statement] = STATE(135), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [343] = { + [sym_compound_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_case_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35923,19 +36500,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35955,38 +36532,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_compound_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_case_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [344] = { + [sym_compound_statement] = STATE(189), + [sym_labeled_statement] = STATE(189), + [sym_expression_statement] = STATE(189), + [sym_if_statement] = STATE(189), + [sym_switch_statement] = STATE(189), + [sym_case_statement] = STATE(189), + [sym_while_statement] = STATE(189), + [sym_do_statement] = STATE(189), + [sym_for_statement] = STATE(189), + [sym_return_statement] = STATE(189), + [sym_break_statement] = STATE(189), + [sym_continue_statement] = STATE(189), + [sym_goto_statement] = STATE(189), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35995,6 +36572,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [345] = { + [sym_compound_statement] = STATE(214), + [sym_labeled_statement] = STATE(214), + [sym_expression_statement] = STATE(214), + [sym_if_statement] = STATE(214), + [sym_switch_statement] = STATE(214), + [sym_case_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_do_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_return_statement] = STATE(214), + [sym_break_statement] = STATE(214), + [sym_continue_statement] = STATE(214), + [sym_goto_statement] = STATE(214), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [346] = { + [sym_compound_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_if] = ACTIONS(117), @@ -36027,39 +36748,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [338] = { - [sym_compound_statement] = STATE(164), - [sym_labeled_statement] = STATE(164), - [sym_expression_statement] = STATE(164), - [sym_if_statement] = STATE(164), - [sym_switch_statement] = STATE(164), - [sym_case_statement] = STATE(164), - [sym_while_statement] = STATE(164), - [sym_do_statement] = STATE(164), - [sym_for_statement] = STATE(164), - [sym_return_statement] = STATE(164), - [sym_break_statement] = STATE(164), - [sym_continue_statement] = STATE(164), - [sym_goto_statement] = STATE(164), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [347] = { + [sym_compound_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_switch_statement] = STATE(179), + [sym_case_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_goto_statement] = STATE(179), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36067,19 +36788,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36099,39 +36820,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_compound_statement] = STATE(150), - [sym_labeled_statement] = STATE(150), - [sym_expression_statement] = STATE(150), - [sym_if_statement] = STATE(150), - [sym_switch_statement] = STATE(150), - [sym_case_statement] = STATE(150), - [sym_while_statement] = STATE(150), - [sym_do_statement] = STATE(150), - [sym_for_statement] = STATE(150), - [sym_return_statement] = STATE(150), - [sym_break_statement] = STATE(150), - [sym_continue_statement] = STATE(150), - [sym_goto_statement] = STATE(150), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1134), + [348] = { + [sym_compound_statement] = STATE(102), + [sym_labeled_statement] = STATE(102), + [sym_expression_statement] = STATE(102), + [sym_if_statement] = STATE(102), + [sym_switch_statement] = STATE(102), + [sym_case_statement] = STATE(102), + [sym_while_statement] = STATE(102), + [sym_do_statement] = STATE(102), + [sym_for_statement] = STATE(102), + [sym_return_statement] = STATE(102), + [sym_break_statement] = STATE(102), + [sym_continue_statement] = STATE(102), + [sym_goto_statement] = STATE(102), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36139,19 +36860,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [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_SEMI] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36171,39 +36892,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_compound_statement] = STATE(162), - [sym_labeled_statement] = STATE(162), - [sym_expression_statement] = STATE(162), - [sym_if_statement] = STATE(162), - [sym_switch_statement] = STATE(162), - [sym_case_statement] = STATE(162), - [sym_while_statement] = STATE(162), - [sym_do_statement] = STATE(162), - [sym_for_statement] = STATE(162), - [sym_return_statement] = STATE(162), - [sym_break_statement] = STATE(162), - [sym_continue_statement] = STATE(162), - [sym_goto_statement] = STATE(162), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [349] = { + [sym_compound_statement] = STATE(101), + [sym_labeled_statement] = STATE(101), + [sym_expression_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_switch_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_do_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_return_statement] = STATE(101), + [sym_break_statement] = STATE(101), + [sym_continue_statement] = STATE(101), + [sym_goto_statement] = STATE(101), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36211,19 +36932,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36243,39 +36964,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_compound_statement] = STATE(161), - [sym_labeled_statement] = STATE(161), - [sym_expression_statement] = STATE(161), - [sym_if_statement] = STATE(161), - [sym_switch_statement] = STATE(161), - [sym_case_statement] = STATE(161), - [sym_while_statement] = STATE(161), - [sym_do_statement] = STATE(161), - [sym_for_statement] = STATE(161), - [sym_return_statement] = STATE(161), - [sym_break_statement] = STATE(161), - [sym_continue_statement] = STATE(161), - [sym_goto_statement] = STATE(161), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [350] = { + [sym_compound_statement] = STATE(103), + [sym_labeled_statement] = STATE(103), + [sym_expression_statement] = STATE(103), + [sym_if_statement] = STATE(103), + [sym_switch_statement] = STATE(103), + [sym_case_statement] = STATE(103), + [sym_while_statement] = STATE(103), + [sym_do_statement] = STATE(103), + [sym_for_statement] = STATE(103), + [sym_return_statement] = STATE(103), + [sym_break_statement] = STATE(103), + [sym_continue_statement] = STATE(103), + [sym_goto_statement] = STATE(103), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36283,19 +37004,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36315,39 +37036,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [342] = { - [sym_compound_statement] = STATE(99), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [351] = { + [sym_compound_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36387,39 +37108,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_compound_statement] = STATE(143), - [sym_labeled_statement] = STATE(143), - [sym_expression_statement] = STATE(143), - [sym_if_statement] = STATE(143), - [sym_switch_statement] = STATE(143), - [sym_case_statement] = STATE(143), - [sym_while_statement] = STATE(143), - [sym_do_statement] = STATE(143), - [sym_for_statement] = STATE(143), - [sym_return_statement] = STATE(143), - [sym_break_statement] = STATE(143), - [sym_continue_statement] = STATE(143), - [sym_goto_statement] = STATE(143), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [352] = { + [sym_compound_statement] = STATE(173), + [sym_labeled_statement] = STATE(173), + [sym_expression_statement] = STATE(173), + [sym_if_statement] = STATE(173), + [sym_switch_statement] = STATE(173), + [sym_case_statement] = STATE(173), + [sym_while_statement] = STATE(173), + [sym_do_statement] = STATE(173), + [sym_for_statement] = STATE(173), + [sym_return_statement] = STATE(173), + [sym_break_statement] = STATE(173), + [sym_continue_statement] = STATE(173), + [sym_goto_statement] = STATE(173), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36427,19 +37148,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36459,39 +37180,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [344] = { - [sym_compound_statement] = STATE(128), - [sym_labeled_statement] = STATE(128), - [sym_expression_statement] = STATE(128), - [sym_if_statement] = STATE(128), - [sym_switch_statement] = STATE(128), - [sym_case_statement] = STATE(128), - [sym_while_statement] = STATE(128), - [sym_do_statement] = STATE(128), - [sym_for_statement] = STATE(128), - [sym_return_statement] = STATE(128), - [sym_break_statement] = STATE(128), - [sym_continue_statement] = STATE(128), - [sym_goto_statement] = STATE(128), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [353] = { + [sym_compound_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36499,19 +37220,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36531,39 +37252,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_compound_statement] = STATE(158), - [sym_labeled_statement] = STATE(158), - [sym_expression_statement] = STATE(158), - [sym_if_statement] = STATE(158), - [sym_switch_statement] = STATE(158), - [sym_case_statement] = STATE(158), - [sym_while_statement] = STATE(158), - [sym_do_statement] = STATE(158), - [sym_for_statement] = STATE(158), - [sym_return_statement] = STATE(158), - [sym_break_statement] = STATE(158), - [sym_continue_statement] = STATE(158), - [sym_goto_statement] = STATE(158), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1134), + [354] = { + [sym_compound_statement] = STATE(170), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36571,19 +37292,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [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_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36603,38 +37324,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [346] = { - [sym_compound_statement] = STATE(156), - [sym_labeled_statement] = STATE(156), - [sym_expression_statement] = STATE(156), - [sym_if_statement] = STATE(156), - [sym_switch_statement] = STATE(156), - [sym_case_statement] = STATE(156), - [sym_while_statement] = STATE(156), - [sym_do_statement] = STATE(156), - [sym_for_statement] = STATE(156), - [sym_return_statement] = STATE(156), - [sym_break_statement] = STATE(156), - [sym_continue_statement] = STATE(156), - [sym_goto_statement] = STATE(156), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [355] = { + [sym_compound_statement] = STATE(224), + [sym_labeled_statement] = STATE(224), + [sym_expression_statement] = STATE(224), + [sym_if_statement] = STATE(224), + [sym_switch_statement] = STATE(224), + [sym_case_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_do_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_return_statement] = STATE(224), + [sym_break_statement] = STATE(224), + [sym_continue_statement] = STATE(224), + [sym_goto_statement] = STATE(224), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36675,38 +37396,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_compound_statement] = STATE(87), - [sym_labeled_statement] = STATE(87), - [sym_expression_statement] = STATE(87), - [sym_if_statement] = STATE(87), - [sym_switch_statement] = STATE(87), - [sym_case_statement] = STATE(87), - [sym_while_statement] = STATE(87), - [sym_do_statement] = STATE(87), - [sym_for_statement] = STATE(87), - [sym_return_statement] = STATE(87), - [sym_break_statement] = STATE(87), - [sym_continue_statement] = STATE(87), - [sym_goto_statement] = STATE(87), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [356] = { + [sym_compound_statement] = STATE(234), + [sym_labeled_statement] = STATE(234), + [sym_expression_statement] = STATE(234), + [sym_if_statement] = STATE(234), + [sym_switch_statement] = STATE(234), + [sym_case_statement] = STATE(234), + [sym_while_statement] = STATE(234), + [sym_do_statement] = STATE(234), + [sym_for_statement] = STATE(234), + [sym_return_statement] = STATE(234), + [sym_break_statement] = STATE(234), + [sym_continue_statement] = STATE(234), + [sym_goto_statement] = STATE(234), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36715,19 +37436,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36747,39 +37468,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_compound_statement] = STATE(163), - [sym_labeled_statement] = STATE(163), - [sym_expression_statement] = STATE(163), - [sym_if_statement] = STATE(163), - [sym_switch_statement] = STATE(163), - [sym_case_statement] = STATE(163), - [sym_while_statement] = STATE(163), - [sym_do_statement] = STATE(163), - [sym_for_statement] = STATE(163), - [sym_return_statement] = STATE(163), - [sym_break_statement] = STATE(163), - [sym_continue_statement] = STATE(163), - [sym_goto_statement] = STATE(163), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [357] = { + [sym_compound_statement] = STATE(147), + [sym_labeled_statement] = STATE(147), + [sym_expression_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_switch_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_while_statement] = STATE(147), + [sym_do_statement] = STATE(147), + [sym_for_statement] = STATE(147), + [sym_return_statement] = STATE(147), + [sym_break_statement] = STATE(147), + [sym_continue_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36787,19 +37508,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36819,39 +37540,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_compound_statement] = STATE(131), - [sym_labeled_statement] = STATE(131), - [sym_expression_statement] = STATE(131), - [sym_if_statement] = STATE(131), - [sym_switch_statement] = STATE(131), - [sym_case_statement] = STATE(131), - [sym_while_statement] = STATE(131), - [sym_do_statement] = STATE(131), - [sym_for_statement] = STATE(131), - [sym_return_statement] = STATE(131), - [sym_break_statement] = STATE(131), - [sym_continue_statement] = STATE(131), - [sym_goto_statement] = STATE(131), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [358] = { + [sym_compound_statement] = STATE(148), + [sym_labeled_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym_if_statement] = STATE(148), + [sym_switch_statement] = STATE(148), + [sym_case_statement] = STATE(148), + [sym_while_statement] = STATE(148), + [sym_do_statement] = STATE(148), + [sym_for_statement] = STATE(148), + [sym_return_statement] = STATE(148), + [sym_break_statement] = STATE(148), + [sym_continue_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36859,19 +37580,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36891,39 +37612,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_compound_statement] = STATE(168), - [sym_labeled_statement] = STATE(168), - [sym_expression_statement] = STATE(168), - [sym_if_statement] = STATE(168), - [sym_switch_statement] = STATE(168), - [sym_case_statement] = STATE(168), - [sym_while_statement] = STATE(168), - [sym_do_statement] = STATE(168), - [sym_for_statement] = STATE(168), - [sym_return_statement] = STATE(168), - [sym_break_statement] = STATE(168), - [sym_continue_statement] = STATE(168), - [sym_goto_statement] = STATE(168), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [359] = { + [sym_compound_statement] = STATE(217), + [sym_labeled_statement] = STATE(217), + [sym_expression_statement] = STATE(217), + [sym_if_statement] = STATE(217), + [sym_switch_statement] = STATE(217), + [sym_case_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_do_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_return_statement] = STATE(217), + [sym_break_statement] = STATE(217), + [sym_continue_statement] = STATE(217), + [sym_goto_statement] = STATE(217), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36931,19 +37652,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36963,39 +37684,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_compound_statement] = STATE(171), - [sym_labeled_statement] = STATE(171), - [sym_expression_statement] = STATE(171), - [sym_if_statement] = STATE(171), - [sym_switch_statement] = STATE(171), - [sym_case_statement] = STATE(171), - [sym_while_statement] = STATE(171), - [sym_do_statement] = STATE(171), - [sym_for_statement] = STATE(171), - [sym_return_statement] = STATE(171), - [sym_break_statement] = STATE(171), - [sym_continue_statement] = STATE(171), - [sym_goto_statement] = STATE(171), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [360] = { + [sym_compound_statement] = STATE(150), + [sym_labeled_statement] = STATE(150), + [sym_expression_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_switch_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_while_statement] = STATE(150), + [sym_do_statement] = STATE(150), + [sym_for_statement] = STATE(150), + [sym_return_statement] = STATE(150), + [sym_break_statement] = STATE(150), + [sym_continue_statement] = STATE(150), + [sym_goto_statement] = STATE(150), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37003,19 +37724,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37035,39 +37756,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_compound_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_case_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1138), + [361] = { + [sym_compound_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37107,39 +37828,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_compound_statement] = STATE(137), - [sym_labeled_statement] = STATE(137), - [sym_expression_statement] = STATE(137), - [sym_if_statement] = STATE(137), - [sym_switch_statement] = STATE(137), - [sym_case_statement] = STATE(137), - [sym_while_statement] = STATE(137), - [sym_do_statement] = STATE(137), - [sym_for_statement] = STATE(137), - [sym_return_statement] = STATE(137), - [sym_break_statement] = STATE(137), - [sym_continue_statement] = STATE(137), - [sym_goto_statement] = STATE(137), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [362] = { + [sym_compound_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_switch_statement] = STATE(222), + [sym_case_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_goto_statement] = STATE(222), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37147,19 +37868,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37179,38 +37900,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_compound_statement] = STATE(151), - [sym_labeled_statement] = STATE(151), - [sym_expression_statement] = STATE(151), - [sym_if_statement] = STATE(151), - [sym_switch_statement] = STATE(151), - [sym_case_statement] = STATE(151), - [sym_while_statement] = STATE(151), - [sym_do_statement] = STATE(151), - [sym_for_statement] = STATE(151), - [sym_return_statement] = STATE(151), - [sym_break_statement] = STATE(151), - [sym_continue_statement] = STATE(151), - [sym_goto_statement] = STATE(151), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [363] = { + [sym_compound_statement] = STATE(158), + [sym_labeled_statement] = STATE(158), + [sym_expression_statement] = STATE(158), + [sym_if_statement] = STATE(158), + [sym_switch_statement] = STATE(158), + [sym_case_statement] = STATE(158), + [sym_while_statement] = STATE(158), + [sym_do_statement] = STATE(158), + [sym_for_statement] = STATE(158), + [sym_return_statement] = STATE(158), + [sym_break_statement] = STATE(158), + [sym_continue_statement] = STATE(158), + [sym_goto_statement] = STATE(158), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37251,39 +37972,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_compound_statement] = STATE(152), - [sym_labeled_statement] = STATE(152), - [sym_expression_statement] = STATE(152), - [sym_if_statement] = STATE(152), - [sym_switch_statement] = STATE(152), - [sym_case_statement] = STATE(152), - [sym_while_statement] = STATE(152), - [sym_do_statement] = STATE(152), - [sym_for_statement] = STATE(152), - [sym_return_statement] = STATE(152), - [sym_break_statement] = STATE(152), - [sym_continue_statement] = STATE(152), - [sym_goto_statement] = STATE(152), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1134), + [364] = { + [sym_attribute_declaration] = STATE(613), + [sym_compound_statement] = STATE(191), + [sym_labeled_statement] = STATE(191), + [sym_expression_statement] = STATE(191), + [sym_if_statement] = STATE(191), + [sym_switch_statement] = STATE(191), + [sym_while_statement] = STATE(191), + [sym_do_statement] = STATE(191), + [sym_for_statement] = STATE(191), + [sym_return_statement] = STATE(191), + [sym_break_statement] = STATE(191), + [sym_continue_statement] = STATE(191), + [sym_goto_statement] = STATE(191), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [aux_sym_attributed_declarator_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37291,19 +38013,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [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_SEMI] = ACTIONS(367), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37323,38 +38044,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_compound_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(689), - [sym_comma_expression] = STATE(1372), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [365] = { + [sym_compound_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37363,19 +38084,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37395,39 +38116,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_compound_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__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [366] = { + [sym_attribute_declaration] = STATE(613), + [sym_compound_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [aux_sym_attributed_declarator_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37435,19 +38157,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37467,39 +38188,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_compound_statement] = STATE(153), - [sym_labeled_statement] = STATE(153), - [sym_expression_statement] = STATE(153), - [sym_if_statement] = STATE(153), - [sym_switch_statement] = STATE(153), - [sym_case_statement] = STATE(153), - [sym_while_statement] = STATE(153), - [sym_do_statement] = STATE(153), - [sym_for_statement] = STATE(153), - [sym_return_statement] = STATE(153), - [sym_break_statement] = STATE(153), - [sym_continue_statement] = STATE(153), - [sym_goto_statement] = STATE(153), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1134), + [367] = { + [sym_compound_statement] = STATE(83), + [sym_labeled_statement] = STATE(83), + [sym_expression_statement] = STATE(83), + [sym_if_statement] = STATE(83), + [sym_switch_statement] = STATE(83), + [sym_case_statement] = STATE(83), + [sym_while_statement] = STATE(83), + [sym_do_statement] = STATE(83), + [sym_for_statement] = STATE(83), + [sym_return_statement] = STATE(83), + [sym_break_statement] = STATE(83), + [sym_continue_statement] = STATE(83), + [sym_goto_statement] = STATE(83), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37507,19 +38228,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [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_SEMI] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37539,38 +38260,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_compound_statement] = STATE(155), - [sym_labeled_statement] = STATE(155), - [sym_expression_statement] = STATE(155), - [sym_if_statement] = STATE(155), - [sym_switch_statement] = STATE(155), - [sym_case_statement] = STATE(155), - [sym_while_statement] = STATE(155), - [sym_do_statement] = STATE(155), - [sym_for_statement] = STATE(155), - [sym_return_statement] = STATE(155), - [sym_break_statement] = STATE(155), - [sym_continue_statement] = STATE(155), - [sym_goto_statement] = STATE(155), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [368] = { + [sym_compound_statement] = STATE(152), + [sym_labeled_statement] = STATE(152), + [sym_expression_statement] = STATE(152), + [sym_if_statement] = STATE(152), + [sym_switch_statement] = STATE(152), + [sym_case_statement] = STATE(152), + [sym_while_statement] = STATE(152), + [sym_do_statement] = STATE(152), + [sym_for_statement] = STATE(152), + [sym_return_statement] = STATE(152), + [sym_break_statement] = STATE(152), + [sym_continue_statement] = STATE(152), + [sym_goto_statement] = STATE(152), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37611,39 +38332,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [360] = { - [sym_compound_statement] = STATE(136), - [sym_labeled_statement] = STATE(136), - [sym_expression_statement] = STATE(136), - [sym_if_statement] = STATE(136), - [sym_switch_statement] = STATE(136), - [sym_case_statement] = STATE(136), - [sym_while_statement] = STATE(136), - [sym_do_statement] = STATE(136), - [sym_for_statement] = STATE(136), - [sym_return_statement] = STATE(136), - [sym_break_statement] = STATE(136), - [sym_continue_statement] = STATE(136), - [sym_goto_statement] = STATE(136), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [369] = { + [sym_compound_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37651,19 +38372,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37683,38 +38404,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_compound_statement] = STATE(1401), - [sym_labeled_statement] = STATE(1401), - [sym_expression_statement] = STATE(1401), - [sym_if_statement] = STATE(1401), - [sym_switch_statement] = STATE(1401), - [sym_case_statement] = STATE(1401), - [sym_while_statement] = STATE(1401), - [sym_do_statement] = STATE(1401), - [sym_for_statement] = STATE(1401), - [sym_return_statement] = STATE(1401), - [sym_break_statement] = STATE(1401), - [sym_continue_statement] = STATE(1401), - [sym_goto_statement] = STATE(1401), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [370] = { + [sym_compound_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_case_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37755,38 +38476,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_compound_statement] = STATE(209), - [sym_labeled_statement] = STATE(209), - [sym_expression_statement] = STATE(209), - [sym_if_statement] = STATE(209), - [sym_switch_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_do_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_return_statement] = STATE(209), - [sym_break_statement] = STATE(209), - [sym_continue_statement] = STATE(209), - [sym_goto_statement] = STATE(209), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [371] = { + [sym_compound_statement] = STATE(130), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_statement] = STATE(130), + [sym_while_statement] = STATE(130), + [sym_do_statement] = STATE(130), + [sym_for_statement] = STATE(130), + [sym_return_statement] = STATE(130), + [sym_break_statement] = STATE(130), + [sym_continue_statement] = STATE(130), + [sym_goto_statement] = STATE(130), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37827,111 +38548,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_compound_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [sym_compound_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_case_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [372] = { + [sym_compound_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1386), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37939,19 +38588,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37971,38 +38620,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [365] = { - [sym_compound_statement] = STATE(188), - [sym_labeled_statement] = STATE(188), - [sym_expression_statement] = STATE(188), - [sym_if_statement] = STATE(188), - [sym_switch_statement] = STATE(188), - [sym_case_statement] = STATE(188), - [sym_while_statement] = STATE(188), - [sym_do_statement] = STATE(188), - [sym_for_statement] = STATE(188), - [sym_return_statement] = STATE(188), - [sym_break_statement] = STATE(188), - [sym_continue_statement] = STATE(188), - [sym_goto_statement] = STATE(188), - [sym__expression] = STATE(725), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), + [373] = { + [sym_compound_statement] = STATE(1409), + [sym_labeled_statement] = STATE(1409), + [sym_expression_statement] = STATE(1409), + [sym_if_statement] = STATE(1409), + [sym_switch_statement] = STATE(1409), + [sym_case_statement] = STATE(1409), + [sym_while_statement] = STATE(1409), + [sym_do_statement] = STATE(1409), + [sym_for_statement] = STATE(1409), + [sym_return_statement] = STATE(1409), + [sym_break_statement] = STATE(1409), + [sym_continue_statement] = STATE(1409), + [sym_goto_statement] = STATE(1409), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -38043,39 +38692,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_compound_statement] = STATE(197), - [sym_labeled_statement] = STATE(197), - [sym_expression_statement] = STATE(197), - [sym_if_statement] = STATE(197), - [sym_switch_statement] = STATE(197), - [sym_case_statement] = STATE(197), - [sym_while_statement] = STATE(197), - [sym_do_statement] = STATE(197), - [sym_for_statement] = STATE(197), - [sym_return_statement] = STATE(197), - [sym_break_statement] = STATE(197), - [sym_continue_statement] = STATE(197), - [sym_goto_statement] = STATE(197), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [374] = { + [sym_compound_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_case_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38083,19 +38732,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -38115,39 +38764,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_compound_statement] = STATE(145), - [sym_labeled_statement] = STATE(145), - [sym_expression_statement] = STATE(145), - [sym_if_statement] = STATE(145), - [sym_switch_statement] = STATE(145), - [sym_case_statement] = STATE(145), - [sym_while_statement] = STATE(145), - [sym_do_statement] = STATE(145), - [sym_for_statement] = STATE(145), - [sym_return_statement] = STATE(145), - [sym_break_statement] = STATE(145), - [sym_continue_statement] = STATE(145), - [sym_goto_statement] = STATE(145), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1130), + [375] = { + [sym_compound_statement] = STATE(154), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym__expression] = STATE(733), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38155,19 +38804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(392), - [anon_sym_while] = ACTIONS(394), - [anon_sym_do] = ACTIONS(396), - [anon_sym_for] = ACTIONS(398), - [anon_sym_return] = ACTIONS(400), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(404), - [anon_sym_goto] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -38187,39 +38836,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_compound_statement] = STATE(134), - [sym_labeled_statement] = STATE(134), - [sym_expression_statement] = STATE(134), - [sym_if_statement] = STATE(134), - [sym_switch_statement] = STATE(134), - [sym_case_statement] = STATE(134), - [sym_while_statement] = STATE(134), - [sym_do_statement] = STATE(134), - [sym_for_statement] = STATE(134), - [sym_return_statement] = STATE(134), - [sym_break_statement] = STATE(134), - [sym_continue_statement] = STATE(134), - [sym_goto_statement] = STATE(134), - [sym__expression] = STATE(718), - [sym_comma_expression] = STATE(1378), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1136), + [376] = { + [sym_compound_statement] = STATE(229), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38227,19 +38876,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -38259,26 +38908,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym__expression] = STATE(510), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_initializer_list] = STATE(512), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_identifier] = ACTIONS(1140), + [377] = { + [sym__expression] = STATE(547), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_initializer_list] = STATE(549), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_identifier] = ACTIONS(1144), [anon_sym_COMMA] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(872), [anon_sym_LPAREN2] = ACTIONS(19), @@ -38329,36 +38978,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_type_qualifier] = STATE(851), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(721), - [sym_comma_expression] = STATE(1414), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_type_descriptor] = STATE(1356), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_type_definition_repeat1] = STATE(851), - [aux_sym_sized_type_specifier_repeat1] = STATE(991), - [sym_identifier] = ACTIONS(1142), + [378] = { + [sym_type_qualifier] = STATE(866), + [sym__type_specifier] = STATE(997), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1422), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_type_descriptor] = STATE(1348), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_type_definition_repeat1] = STATE(866), + [aux_sym_sized_type_specifier_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38370,10 +39019,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1148), + [anon_sym_unsigned] = ACTIONS(1148), + [anon_sym_long] = ACTIONS(1148), + [anon_sym_short] = ACTIONS(1148), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -38397,36 +39046,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_type_qualifier] = STATE(851), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(721), - [sym_comma_expression] = STATE(1414), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_type_descriptor] = STATE(1340), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_type_definition_repeat1] = STATE(851), - [aux_sym_sized_type_specifier_repeat1] = STATE(991), - [sym_identifier] = ACTIONS(1142), + [379] = { + [sym_type_qualifier] = STATE(866), + [sym__type_specifier] = STATE(997), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1422), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_type_descriptor] = STATE(1347), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_type_definition_repeat1] = STATE(866), + [aux_sym_sized_type_specifier_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38438,10 +39087,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1148), + [anon_sym_unsigned] = ACTIONS(1148), + [anon_sym_long] = ACTIONS(1148), + [anon_sym_short] = ACTIONS(1148), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -38465,36 +39114,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_type_qualifier] = STATE(851), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(721), - [sym_comma_expression] = STATE(1414), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_type_descriptor] = STATE(1339), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_type_definition_repeat1] = STATE(851), - [aux_sym_sized_type_specifier_repeat1] = STATE(991), - [sym_identifier] = ACTIONS(1142), + [380] = { + [sym_type_qualifier] = STATE(866), + [sym__type_specifier] = STATE(997), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1422), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_type_descriptor] = STATE(1427), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_type_definition_repeat1] = STATE(866), + [aux_sym_sized_type_specifier_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38506,10 +39155,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1148), + [anon_sym_unsigned] = ACTIONS(1148), + [anon_sym_long] = ACTIONS(1148), + [anon_sym_short] = ACTIONS(1148), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -38533,36 +39182,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_type_qualifier] = STATE(851), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(721), - [sym_comma_expression] = STATE(1414), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_type_descriptor] = STATE(1416), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_type_definition_repeat1] = STATE(851), - [aux_sym_sized_type_specifier_repeat1] = STATE(991), - [sym_identifier] = ACTIONS(1142), + [381] = { + [sym_type_qualifier] = STATE(866), + [sym__type_specifier] = STATE(997), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1422), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_type_descriptor] = STATE(1421), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_type_definition_repeat1] = STATE(866), + [aux_sym_sized_type_specifier_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38574,10 +39223,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1148), + [anon_sym_unsigned] = ACTIONS(1148), + [anon_sym_long] = ACTIONS(1148), + [anon_sym_short] = ACTIONS(1148), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -38601,36 +39250,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [374] = { - [sym_type_qualifier] = STATE(851), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(721), - [sym_comma_expression] = STATE(1414), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_type_descriptor] = STATE(1408), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_type_definition_repeat1] = STATE(851), - [aux_sym_sized_type_specifier_repeat1] = STATE(991), - [sym_identifier] = ACTIONS(1142), + [382] = { + [sym_type_qualifier] = STATE(866), + [sym__type_specifier] = STATE(997), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1422), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_type_descriptor] = STATE(1364), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_type_definition_repeat1] = STATE(866), + [aux_sym_sized_type_specifier_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38642,10 +39291,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1148), + [anon_sym_unsigned] = ACTIONS(1148), + [anon_sym_long] = ACTIONS(1148), + [anon_sym_short] = ACTIONS(1148), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -38669,36 +39318,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_type_qualifier] = STATE(851), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(721), - [sym_comma_expression] = STATE(1414), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_type_descriptor] = STATE(1366), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_type_definition_repeat1] = STATE(851), - [aux_sym_sized_type_specifier_repeat1] = STATE(991), - [sym_identifier] = ACTIONS(1142), + [383] = { + [sym_type_qualifier] = STATE(866), + [sym__type_specifier] = STATE(997), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1422), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_type_descriptor] = STATE(1424), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_type_definition_repeat1] = STATE(866), + [aux_sym_sized_type_specifier_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38710,10 +39359,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1148), + [anon_sym_unsigned] = ACTIONS(1148), + [anon_sym_long] = ACTIONS(1148), + [anon_sym_short] = ACTIONS(1148), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -38737,36 +39386,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_type_qualifier] = STATE(851), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(721), - [sym_comma_expression] = STATE(1414), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_type_descriptor] = STATE(1390), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_type_definition_repeat1] = STATE(851), - [aux_sym_sized_type_specifier_repeat1] = STATE(991), - [sym_identifier] = ACTIONS(1142), + [384] = { + [sym_type_qualifier] = STATE(866), + [sym__type_specifier] = STATE(997), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1422), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_type_descriptor] = STATE(1374), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_type_definition_repeat1] = STATE(866), + [aux_sym_sized_type_specifier_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38778,10 +39427,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1148), + [anon_sym_unsigned] = ACTIONS(1148), + [anon_sym_long] = ACTIONS(1148), + [anon_sym_short] = ACTIONS(1148), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -38805,36 +39454,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_type_qualifier] = STATE(851), - [sym__type_specifier] = STATE(984), - [sym_sized_type_specifier] = STATE(865), - [sym_enum_specifier] = STATE(865), - [sym_struct_specifier] = STATE(865), - [sym_union_specifier] = STATE(865), - [sym__expression] = STATE(721), - [sym_comma_expression] = STATE(1414), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(605), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_type_descriptor] = STATE(1413), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(605), - [sym_call_expression] = STATE(605), - [sym_field_expression] = STATE(605), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(605), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(417), - [sym_macro_type_specifier] = STATE(865), - [aux_sym_type_definition_repeat1] = STATE(851), - [aux_sym_sized_type_specifier_repeat1] = STATE(991), - [sym_identifier] = ACTIONS(1142), + [385] = { + [sym_type_qualifier] = STATE(866), + [sym__type_specifier] = STATE(997), + [sym_sized_type_specifier] = STATE(874), + [sym_enum_specifier] = STATE(874), + [sym_struct_specifier] = STATE(874), + [sym_union_specifier] = STATE(874), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1422), + [sym_conditional_expression] = STATE(572), + [sym_assignment_expression] = STATE(572), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(572), + [sym_binary_expression] = STATE(572), + [sym_update_expression] = STATE(572), + [sym_cast_expression] = STATE(572), + [sym_type_descriptor] = STATE(1416), + [sym_sizeof_expression] = STATE(572), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(572), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(572), + [sym_concatenated_string] = STATE(572), + [sym_string_literal] = STATE(429), + [sym_macro_type_specifier] = STATE(874), + [aux_sym_type_definition_repeat1] = STATE(866), + [aux_sym_sized_type_specifier_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38846,10 +39495,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1148), + [anon_sym_unsigned] = ACTIONS(1148), + [anon_sym_long] = ACTIONS(1148), + [anon_sym_short] = ACTIONS(1148), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -38857,300 +39506,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1058), 1, - anon_sym_AMP, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1152), 1, - anon_sym_TILDE, - ACTIONS(1154), 1, - anon_sym_STAR, - ACTIONS(1158), 1, - anon_sym_sizeof, - STATE(417), 1, - sym_string_literal, - STATE(512), 1, - sym_initializer_list, - STATE(628), 1, - sym__expression, - ACTIONS(1156), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1150), 3, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(882), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - STATE(634), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - ACTIONS(872), 14, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - [107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - 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(1160), 38, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - 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(1164), 38, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [249] = 6, + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, - sym_identifier, - ACTIONS(1177), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1173), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - ACTIONS(1175), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - ACTIONS(1171), 20, + ACTIONS(1152), 25, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_number_literal, @@ -39161,836 +39551,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [321] = 30, - 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1180), 1, - sym_identifier, - ACTIONS(1182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1184), 1, - anon_sym_RPAREN, - ACTIONS(1186), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_STAR, - ACTIONS(1190), 1, - anon_sym___based, - ACTIONS(1192), 1, - anon_sym_LBRACK, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(894), 1, - sym__declaration_specifiers, - STATE(1084), 1, - sym__declarator, - STATE(1132), 1, - sym_parameter_list, - STATE(1144), 1, - sym__abstract_declarator, - STATE(1171), 1, - sym_parameter_declaration, - STATE(1394), 1, - sym_ms_based_modifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1130), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - STATE(642), 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, - [439] = 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1200), 1, - aux_sym_preproc_if_token2, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, - sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1288), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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(396), 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, - [547] = 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - ACTIONS(1210), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, - sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1317), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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(392), 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, - [655] = 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - ACTIONS(1212), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, - sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1316), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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(405), 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, - [763] = 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - ACTIONS(1214), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, - sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1318), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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(390), 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, - [871] = 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - ACTIONS(1216), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, - sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1328), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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(385), 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, - [979] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1150), 38, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_extern, 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - ACTIONS(1218), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, - sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1403), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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(405), 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, - [1087] = 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, sym_identifier, - ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - ACTIONS(1220), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, - sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1417), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, + [71] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1094), 1, + anon_sym_AMP, + ACTIONS(1154), 1, + sym_identifier, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1160), 1, + anon_sym_TILDE, + ACTIONS(1162), 1, + anon_sym_STAR, + ACTIONS(1166), 1, + anon_sym_sizeof, + STATE(429), 1, + sym_string_literal, + STATE(549), 1, + sym_initializer_list, + STATE(630), 1, + sym__expression, + ACTIONS(1164), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1158), 3, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(882), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + STATE(644), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + ACTIONS(872), 14, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + [178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1170), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + 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(1168), 38, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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(405), 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, - [1195] = 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - ACTIONS(1222), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, - sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1279), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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(405), 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, - [1303] = 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, sym_identifier, - ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - ACTIONS(1224), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, - sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1420), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + [249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1181), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1177), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + ACTIONS(1179), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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(388), 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, - [1411] = 26, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + ACTIONS(1175), 20, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [321] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40005,34 +39828,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1184), 1, sym_identifier, + ACTIONS(1186), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1188), 1, + anon_sym_RPAREN, + ACTIONS(1190), 1, + anon_sym_LPAREN2, + ACTIONS(1192), 1, + anon_sym_STAR, + ACTIONS(1194), 1, + anon_sym___based, ACTIONS(1196), 1, - aux_sym_preproc_def_token1, - ACTIONS(1198), 1, - aux_sym_preproc_if_token1, - ACTIONS(1204), 1, - aux_sym_preproc_else_token1, - ACTIONS(1206), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, - sym_preproc_directive, - ACTIONS(1226), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, + anon_sym_LBRACK, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, + STATE(941), 1, sym__declaration_specifiers, - ACTIONS(1202), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1341), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, + STATE(1092), 1, + sym__declarator, + STATE(1121), 1, + sym__abstract_declarator, + STATE(1140), 1, + sym_parameter_list, + STATE(1178), 1, + sym_parameter_declaration, + STATE(1402), 1, + sym_ms_based_modifier, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -40043,19 +39870,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1138), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40063,16 +39901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(405), 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, - [1519] = 26, + [439] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40087,32 +39916,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1196), 1, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1198), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, ACTIONS(1204), 1, + aux_sym_preproc_if_token2, + ACTIONS(1208), 1, aux_sym_preproc_else_token1, - ACTIONS(1206), 1, + ACTIONS(1210), 1, aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, + ACTIONS(1212), 1, sym_preproc_directive, - ACTIONS(1228), 1, - aux_sym_preproc_if_token2, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1202), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1350), 2, + STATE(1278), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40131,13 +39960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40145,7 +39974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(405), 8, + STATE(414), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40154,7 +39983,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, - [1627] = 26, + [547] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40169,32 +39998,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1196), 1, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1198), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, - ACTIONS(1204), 1, + ACTIONS(1208), 1, aux_sym_preproc_else_token1, - ACTIONS(1206), 1, + ACTIONS(1210), 1, aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, + ACTIONS(1212), 1, sym_preproc_directive, - ACTIONS(1230), 1, + ACTIONS(1214), 1, aux_sym_preproc_if_token2, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1202), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1443), 2, + STATE(1323), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40213,13 +40042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40227,7 +40056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(389), 8, + STATE(414), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40236,7 +40065,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, - [1735] = 26, + [655] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40251,32 +40080,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1196), 1, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1198), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, - ACTIONS(1204), 1, + ACTIONS(1208), 1, aux_sym_preproc_else_token1, - ACTIONS(1206), 1, + ACTIONS(1210), 1, aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, + ACTIONS(1212), 1, sym_preproc_directive, - ACTIONS(1232), 1, + ACTIONS(1216), 1, aux_sym_preproc_if_token2, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1202), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1347), 2, + STATE(1425), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40295,13 +40124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40309,7 +40138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(393), 8, + STATE(414), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40318,7 +40147,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, - [1843] = 26, + [763] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40333,32 +40162,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1196), 1, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1198), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, - ACTIONS(1204), 1, + ACTIONS(1208), 1, aux_sym_preproc_else_token1, - ACTIONS(1206), 1, + ACTIONS(1210), 1, aux_sym_preproc_elif_token1, - ACTIONS(1208), 1, + ACTIONS(1212), 1, sym_preproc_directive, - ACTIONS(1234), 1, + ACTIONS(1218), 1, aux_sym_preproc_if_token2, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1202), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1310), 2, + STATE(1355), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40377,13 +40206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40391,7 +40220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(405), 8, + STATE(403), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40400,591 +40229,154 @@ 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, - [1951] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 1, - anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1249), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1253), 1, - anon_sym_COLON, - ACTIONS(1255), 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(1244), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1236), 13, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1238), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [2026] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 1, - anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1249), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1257), 1, - anon_sym_SEMI, - ACTIONS(1260), 1, - anon_sym_COLON, - ACTIONS(1255), 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(1238), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1244), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1236), 13, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [2103] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 1, - anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1249), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1257), 1, - anon_sym_SEMI, - ACTIONS(1262), 1, - anon_sym_COLON, - ACTIONS(1255), 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(1238), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1244), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1236), 13, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [2180] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 1, - anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1249), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1260), 1, - anon_sym_COLON, - ACTIONS(1255), 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(1244), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1236), 13, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1238), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [2255] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 1, - anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1249), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1264), 1, - anon_sym_COLON, - ACTIONS(1255), 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(1244), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1236), 13, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - ACTIONS(1238), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [2330] = 11, + [871] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 1, - anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1249), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1253), 1, - anon_sym_COLON, - ACTIONS(1257), 1, - anon_sym_SEMI, - ACTIONS(1255), 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(1238), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1244), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1236), 13, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [2407] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 1, - anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1249), 1, + 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(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1262), 1, - anon_sym_COLON, - ACTIONS(1255), 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(1244), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1236), 13, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1238), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [2482] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 1, - anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1249), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1257), 1, - anon_sym_SEMI, - ACTIONS(1264), 1, - anon_sym_COLON, - ACTIONS(1255), 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(1238), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1244), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1236), 13, + ACTIONS(1200), 1, + aux_sym_preproc_def_token1, + ACTIONS(1202), 1, + aux_sym_preproc_if_token1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, + sym_preproc_directive, + ACTIONS(1220), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1002), 1, + sym__declaration_specifiers, + ACTIONS(1206), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1411), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [2559] = 23, + STATE(874), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(650), 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(414), 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, + [979] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, - sym_identifier, - ACTIONS(1269), 1, - aux_sym_preproc_def_token1, - ACTIONS(1272), 1, - aux_sym_preproc_if_token1, - ACTIONS(1280), 1, - sym_preproc_directive, - ACTIONS(1286), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1289), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1292), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1301), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1304), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1307), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1310), 1, + ACTIONS(55), 1, anon_sym_union, - STATE(701), 1, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1200), 1, + aux_sym_preproc_def_token1, + ACTIONS(1202), 1, + aux_sym_preproc_if_token1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, + sym_preproc_directive, + ACTIONS(1222), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(993), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1277), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1275), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(1295), 4, + STATE(1428), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1298), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1283), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40992,7 +40384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(405), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41001,297 +40393,89 @@ 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, - [2659] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1140), 1, - sym_identifier, - ACTIONS(1313), 1, - anon_sym_COMMA, - ACTIONS(1315), 1, - anon_sym_RBRACE, - ACTIONS(1317), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, - anon_sym_DOT, - STATE(417), 1, - sym_string_literal, - STATE(666), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(1151), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - STATE(1097), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(605), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [2759] = 9, + [1087] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 1, - anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1249), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1255), 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(1244), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1236), 13, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + 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(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1200), 1, + aux_sym_preproc_def_token1, + ACTIONS(1202), 1, + aux_sym_preproc_if_token1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, + sym_preproc_directive, + ACTIONS(1224), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1002), 1, + sym__declaration_specifiers, + ACTIONS(1206), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1336), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - sym_identifier, - ACTIONS(1238), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [2831] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1140), 1, - sym_identifier, - ACTIONS(1317), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, - anon_sym_DOT, - ACTIONS(1321), 1, - anon_sym_RBRACE, - STATE(417), 1, - sym_string_literal, - STATE(693), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(1232), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - STATE(1097), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(605), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [2928] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1140), 1, - sym_identifier, - ACTIONS(1317), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, - anon_sym_DOT, - ACTIONS(1323), 1, - anon_sym_RBRACE, - STATE(417), 1, - sym_string_literal, - STATE(693), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(1232), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - STATE(1097), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(605), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [3025] = 23, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(650), 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(392), 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, + [1195] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -41306,27 +40490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1325), 1, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1327), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, - ACTIONS(1329), 1, - aux_sym_preproc_if_token2, - ACTIONS(1333), 1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, sym_preproc_directive, - STATE(701), 1, + ACTIONS(1226), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(992), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1331), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + STATE(1349), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -41343,13 +40534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -41357,7 +40548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(412), 8, + STATE(414), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41366,138 +40557,154 @@ 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, - [3123] = 21, + [1303] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1140), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1317), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, - anon_sym_DOT, - STATE(417), 1, - sym_string_literal, - STATE(693), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(1232), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - STATE(1097), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(605), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [3217] = 23, + ACTIONS(1200), 1, + aux_sym_preproc_def_token1, + ACTIONS(1202), 1, + aux_sym_preproc_if_token1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, + sym_preproc_directive, + ACTIONS(1228), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1002), 1, + sym__declaration_specifiers, + ACTIONS(1206), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1326), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(650), 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(414), 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, + [1411] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, - sym_identifier, - ACTIONS(1275), 1, - aux_sym_preproc_if_token2, - ACTIONS(1286), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1289), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1292), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1301), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1304), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1307), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1310), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1335), 1, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1338), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, - ACTIONS(1344), 1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, sym_preproc_directive, - STATE(701), 1, + ACTIONS(1230), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(992), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1341), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1295), 4, + STATE(1451), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1298), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1283), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -41505,7 +40712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(412), 8, + STATE(393), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41514,65 +40721,72 @@ 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, - [3315] = 23, + [1519] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, - sym_identifier, - ACTIONS(1286), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1289), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1292), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1301), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1304), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1307), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1310), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1347), 1, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1350), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, - ACTIONS(1356), 1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, sym_preproc_directive, - ACTIONS(1359), 1, - anon_sym_RBRACE, - STATE(701), 1, + ACTIONS(1232), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(994), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1353), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1295), 4, + STATE(1295), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1298), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1283), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -41580,7 +40794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(413), 8, + STATE(399), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41589,7 +40803,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, - [3413] = 23, + [1627] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -41604,27 +40818,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1325), 1, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1327), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, - ACTIONS(1333), 1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, sym_preproc_directive, - ACTIONS(1361), 1, + ACTIONS(1234), 1, aux_sym_preproc_if_token2, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(992), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1331), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + STATE(1324), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -41641,13 +40862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -41655,7 +40876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(410), 8, + STATE(398), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41664,7 +40885,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, - [3511] = 23, + [1735] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -41679,27 +40900,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1363), 1, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1365), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, - ACTIONS(1369), 1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, sym_preproc_directive, - ACTIONS(1371), 1, - anon_sym_RBRACE, - STATE(701), 1, + ACTIONS(1236), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(994), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1367), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + STATE(1358), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -41716,13 +40944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -41730,7 +40958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(413), 8, + STATE(414), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41739,7 +40967,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, - [3609] = 23, + [1843] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -41754,27 +40982,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1363), 1, + ACTIONS(1200), 1, aux_sym_preproc_def_token1, - ACTIONS(1365), 1, + ACTIONS(1202), 1, aux_sym_preproc_if_token1, - ACTIONS(1369), 1, + ACTIONS(1208), 1, + aux_sym_preproc_else_token1, + ACTIONS(1210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1212), 1, sym_preproc_directive, - ACTIONS(1373), 1, - anon_sym_RBRACE, - STATE(701), 1, + ACTIONS(1238), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(994), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1367), 2, + ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + STATE(1325), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -41791,13 +41026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -41805,7 +41040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(415), 8, + STATE(391), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41814,22 +41049,33 @@ 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, - [3707] = 5, + [1951] = 10, ACTIONS(3), 1, sym_comment, - STATE(419), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1244), 13, + ACTIONS(1244), 1, + anon_sym_LPAREN2, + ACTIONS(1250), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1257), 1, + anon_sym_COLON, + ACTIONS(1259), 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(1248), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -41839,11 +41085,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1238), 29, + anon_sym_LBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1242), 13, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -41851,11 +41109,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [2026] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 1, + anon_sym_LPAREN2, + ACTIONS(1250), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(1259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41866,97 +41138,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1248), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1242), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [3768] = 20, + [2101] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1244), 1, anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - anon_sym_sizeof, - ACTIONS(1375), 1, + ACTIONS(1250), 1, anon_sym_STAR, - ACTIONS(1377), 1, - anon_sym_RBRACK, - STATE(417), 1, - sym_string_literal, - STATE(802), 1, - sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1156), 2, + ACTIONS(1253), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(1263), 1, + anon_sym_SEMI, + ACTIONS(1259), 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(1242), 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, - STATE(644), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1379), 4, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1248), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(634), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [3859] = 5, + sym_identifier, + [2178] = 10, ACTIONS(3), 1, sym_comment, - STATE(420), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1383), 13, + ACTIONS(1244), 1, + anon_sym_LPAREN2, + ACTIONS(1250), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1266), 1, + anon_sym_COLON, + ACTIONS(1259), 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(1248), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -41966,23 +41281,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1381), 29, + anon_sym_LBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1242), 13, 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_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [2253] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 1, anon_sym_LPAREN2, + ACTIONS(1250), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1263), 1, + anon_sym_SEMI, + ACTIONS(1268), 1, + anon_sym_COLON, + ACTIONS(1259), 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(1242), 12, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1248), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [2330] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 1, + anon_sym_LPAREN2, + ACTIONS(1250), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1263), 1, anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1266), 1, + anon_sym_COLON, + ACTIONS(1259), 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(1242), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1248), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [2407] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 1, + anon_sym_LPAREN2, + ACTIONS(1250), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1268), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41993,26 +41466,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [3920] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(420), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1389), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1387), 13, + ACTIONS(1248), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -42022,11 +41478,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1385), 29, + anon_sym_LBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + ACTIONS(1242), 13, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42034,11 +41502,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [2482] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 1, + anon_sym_LPAREN2, + ACTIONS(1250), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1257), 1, + anon_sym_COLON, + ACTIONS(1263), 1, + anon_sym_SEMI, + ACTIONS(1259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -42049,194 +41533,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1242), 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, - [3981] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - anon_sym_sizeof, - ACTIONS(1392), 1, - anon_sym_STAR, - ACTIONS(1394), 1, - anon_sym_RBRACK, - STATE(417), 1, - sym_string_literal, - STATE(814), 1, - sym__expression, - ACTIONS(1150), 2, + ACTIONS(1248), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1156), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(644), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1379), 4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(634), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4072] = 20, + sym_identifier, + [2559] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1396), 1, - anon_sym_STAR, - ACTIONS(1398), 1, - anon_sym_RBRACK, - STATE(417), 1, - sym_string_literal, - STATE(795), 1, - sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1156), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(644), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1379), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(634), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4163] = 20, - ACTIONS(3), 1, - sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - anon_sym_sizeof, - ACTIONS(1400), 1, - anon_sym_STAR, - ACTIONS(1402), 1, - anon_sym_RBRACK, - STATE(417), 1, + ACTIONS(1270), 1, + anon_sym_COMMA, + ACTIONS(1272), 1, + anon_sym_RBRACE, + ACTIONS(1274), 1, + anon_sym_LBRACK, + ACTIONS(1276), 1, + anon_sym_DOT, + STATE(429), 1, sym_string_literal, - STATE(794), 1, + STATE(674), 1, sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1156), 2, + 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(428), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1159), 2, + sym_initializer_list, + sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1379), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, + STATE(1107), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -42249,13 +41633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42266,261 +41650,192 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4254] = 20, + [2659] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1278), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - anon_sym_sizeof, - ACTIONS(1404), 1, - anon_sym_STAR, - ACTIONS(1406), 1, - anon_sym_RBRACK, - STATE(417), 1, - sym_string_literal, - STATE(819), 1, - sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1156), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(421), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1379), 4, + ACTIONS(1281), 1, + aux_sym_preproc_def_token1, + ACTIONS(1284), 1, + aux_sym_preproc_if_token1, + ACTIONS(1292), 1, + sym_preproc_directive, + ACTIONS(1298), 1, + anon_sym___attribute__, + ACTIONS(1301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1304), 1, + anon_sym___declspec, + ACTIONS(1313), 1, + sym_primitive_type, + ACTIONS(1316), 1, + anon_sym_enum, + ACTIONS(1319), 1, + anon_sym_struct, + ACTIONS(1322), 1, + anon_sym_union, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1002), 1, + sym__declaration_specifiers, + ACTIONS(1289), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1287), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(1307), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(634), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4345] = 20, + ACTIONS(1310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1295), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(650), 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(414), 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, + [2759] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1244), 1, anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1250), 1, anon_sym_STAR, - ACTIONS(1410), 1, - anon_sym_RBRACK, - STATE(417), 1, - sym_string_literal, - STATE(783), 1, - sym__expression, - ACTIONS(1150), 2, + ACTIONS(1253), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1259), 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(1248), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1156), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(418), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1379), 4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(634), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4436] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1146), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - anon_sym_sizeof, - ACTIONS(1412), 1, - anon_sym_STAR, - ACTIONS(1414), 1, - anon_sym_RBRACK, - STATE(417), 1, - sym_string_literal, - STATE(766), 1, - sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1156), 2, + ACTIONS(1242), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(422), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1379), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(634), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4527] = 20, + anon_sym_DOT, + anon_sym_DASH_GT, + [2831] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - anon_sym_sizeof, - ACTIONS(1416), 1, - anon_sym_STAR, - ACTIONS(1418), 1, - anon_sym_RBRACK, - STATE(417), 1, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1274), 1, + anon_sym_LBRACK, + ACTIONS(1276), 1, + anon_sym_DOT, + ACTIONS(1325), 1, + anon_sym_RBRACE, + STATE(429), 1, sym_string_literal, - STATE(812), 1, + STATE(742), 1, sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1156), 2, + 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(429), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1237), 2, + sym_initializer_list, + sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1379), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, + STATE(1107), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -42533,13 +41848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42550,48 +41865,52 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4618] = 20, + [2928] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - anon_sym_sizeof, - ACTIONS(1420), 1, - anon_sym_STAR, - ACTIONS(1422), 1, - anon_sym_RBRACK, - STATE(417), 1, + ACTIONS(1274), 1, + anon_sym_LBRACK, + ACTIONS(1276), 1, + anon_sym_DOT, + ACTIONS(1327), 1, + anon_sym_RBRACE, + STATE(429), 1, sym_string_literal, - STATE(745), 1, + STATE(742), 1, sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1156), 2, + 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(644), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1237), 2, + sym_initializer_list, + sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1379), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, + STATE(1107), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -42604,13 +41923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42621,48 +41940,50 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4709] = 20, + [3025] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1154), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - anon_sym_sizeof, - ACTIONS(1424), 1, - anon_sym_STAR, - ACTIONS(1426), 1, - anon_sym_RBRACK, - STATE(417), 1, + ACTIONS(1274), 1, + anon_sym_LBRACK, + ACTIONS(1276), 1, + anon_sym_DOT, + STATE(429), 1, sym_string_literal, - STATE(758), 1, + STATE(742), 1, sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1156), 2, + 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(644), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1237), 2, + sym_initializer_list, + sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1379), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, + STATE(1107), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -42675,13 +41996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42692,75 +42013,65 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4800] = 26, + [3119] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1278), 1, + sym_identifier, + ACTIONS(1287), 1, + aux_sym_preproc_if_token2, + ACTIONS(1298), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1304), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1313), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1316), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1319), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1322), 1, anon_sym_union, - ACTIONS(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1184), 1, - anon_sym_RPAREN, - ACTIONS(1192), 1, - anon_sym_LBRACK, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1428), 1, - anon_sym_LPAREN2, - ACTIONS(1430), 1, - anon_sym_STAR, - STATE(701), 1, + ACTIONS(1329), 1, + aux_sym_preproc_def_token1, + ACTIONS(1332), 1, + aux_sym_preproc_if_token1, + ACTIONS(1338), 1, + sym_preproc_directive, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(894), 1, + STATE(1001), 1, sym__declaration_specifiers, - STATE(1132), 1, - sym_parameter_list, - STATE(1144), 1, - sym__abstract_declarator, - STATE(1171), 1, - sym_parameter_declaration, - ACTIONS(45), 4, + ACTIONS(1335), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1307), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, + ACTIONS(1310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1130), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(43), 5, + ACTIONS(1295), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42768,7 +42079,16 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4902] = 21, + STATE(419), 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, + [3217] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -42783,24 +42103,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1432), 1, - anon_sym_LBRACE, - STATE(640), 1, - sym_ms_call_modifier, - STATE(701), 1, + ACTIONS(1341), 1, + aux_sym_preproc_def_token1, + ACTIONS(1343), 1, + aux_sym_preproc_if_token1, + ACTIONS(1347), 1, + sym_preproc_directive, + ACTIONS(1349), 1, + anon_sym_RBRACE, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1006), 1, + STATE(1000), 1, sym__declaration_specifiers, - STATE(236), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, + ACTIONS(1345), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -42817,20 +42140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 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(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42838,7 +42154,16 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4993] = 21, + STATE(423), 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, + [3315] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -42853,24 +42178,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1434), 1, - anon_sym_LBRACE, - STATE(639), 1, - sym_ms_call_modifier, - STATE(701), 1, + ACTIONS(1351), 1, + aux_sym_preproc_def_token1, + ACTIONS(1353), 1, + aux_sym_preproc_if_token1, + ACTIONS(1355), 1, + aux_sym_preproc_if_token2, + ACTIONS(1359), 1, + sym_preproc_directive, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1000), 1, + STATE(1001), 1, sym__declaration_specifiers, - STATE(254), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, + ACTIONS(1357), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -42887,20 +42215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 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(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42908,7 +42229,16 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5084] = 21, + STATE(419), 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, + [3413] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -42923,24 +42253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1436), 1, - anon_sym_LBRACE, - STATE(641), 1, - sym_ms_call_modifier, - STATE(701), 1, + ACTIONS(1351), 1, + aux_sym_preproc_def_token1, + ACTIONS(1353), 1, + aux_sym_preproc_if_token1, + ACTIONS(1359), 1, + sym_preproc_directive, + ACTIONS(1361), 1, + aux_sym_preproc_if_token2, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(997), 1, + STATE(1001), 1, sym__declaration_specifiers, - STATE(107), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, + ACTIONS(1357), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -42957,20 +42290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 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(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42978,111 +42304,16 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 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(1438), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [5230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 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(1442), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [5285] = 21, + STATE(421), 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, + [3511] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43097,24 +42328,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1446), 1, - anon_sym_LBRACE, - STATE(637), 1, - sym_ms_call_modifier, - STATE(701), 1, + ACTIONS(1341), 1, + aux_sym_preproc_def_token1, + ACTIONS(1343), 1, + aux_sym_preproc_if_token1, + ACTIONS(1347), 1, + sym_preproc_directive, + ACTIONS(1363), 1, + anon_sym_RBRACE, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1008), 1, + STATE(1000), 1, sym__declaration_specifiers, - STATE(271), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, + ACTIONS(1345), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -43131,20 +42365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 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(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -43152,105 +42379,132 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5376] = 18, + STATE(424), 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, + [3609] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1278), 1, sym_identifier, - ACTIONS(1448), 1, - anon_sym_RPAREN, - STATE(417), 1, - sym_string_literal, - STATE(730), 1, - sym__expression, - STATE(1411), 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), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(605), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [5458] = 18, + ACTIONS(1298), 1, + anon_sym___attribute__, + ACTIONS(1301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1304), 1, + anon_sym___declspec, + ACTIONS(1313), 1, + sym_primitive_type, + ACTIONS(1316), 1, + anon_sym_enum, + ACTIONS(1319), 1, + anon_sym_struct, + ACTIONS(1322), 1, + anon_sym_union, + ACTIONS(1365), 1, + aux_sym_preproc_def_token1, + ACTIONS(1368), 1, + aux_sym_preproc_if_token1, + ACTIONS(1374), 1, + sym_preproc_directive, + ACTIONS(1377), 1, + anon_sym_RBRACE, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1000), 1, + sym__declaration_specifiers, + ACTIONS(1371), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1307), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1295), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(650), 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(424), 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, + [3707] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1450), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1379), 1, + anon_sym_STAR, + ACTIONS(1381), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(707), 1, + STATE(753), 1, sym__expression, - STATE(1314), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(435), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43263,13 +42517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43280,105 +42534,104 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5540] = 18, + [3798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1140), 1, - sym_identifier, - ACTIONS(1452), 1, - anon_sym_SEMI, - STATE(417), 1, + STATE(432), 2, sym_string_literal, - STATE(716), 1, - sym__expression, - STATE(1358), 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), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + aux_sym_concatenated_string_repeat1, ACTIONS(87), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [5622] = 18, + ACTIONS(1387), 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(1385), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [3859] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1454), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1389), 1, + anon_sym_STAR, + ACTIONS(1391), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(729), 1, + STATE(751), 1, sym__expression, - STATE(1410), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(652), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43391,13 +42644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43408,41 +42661,48 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5704] = 18, + [3950] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1456), 1, - anon_sym_SEMI, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1393), 1, + anon_sym_STAR, + ACTIONS(1395), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(724), 1, + STATE(796), 1, sym__expression, - STATE(1419), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(652), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43455,13 +42715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43472,41 +42732,104 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5786] = 18, + [4041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + STATE(426), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1248), 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(1242), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [4102] = 20, + ACTIONS(3), 1, + sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1458), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1397), 1, + anon_sym_STAR, + ACTIONS(1399), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(731), 1, + STATE(760), 1, sym__expression, - STATE(1342), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(433), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43519,13 +42842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43536,41 +42859,48 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5868] = 18, + [4193] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1460), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1401), 1, + anon_sym_STAR, + ACTIONS(1403), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(706), 1, + STATE(745), 1, sym__expression, - STATE(1277), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(428), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43583,13 +42913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43600,41 +42930,104 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5950] = 18, + [4284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + STATE(432), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1409), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1407), 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(1405), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [4345] = 20, + ACTIONS(3), 1, + sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1462), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1412), 1, + anon_sym_STAR, + ACTIONS(1414), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(709), 1, + STATE(816), 1, sym__expression, - STATE(1275), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(652), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43647,13 +43040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43664,41 +43057,48 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6032] = 18, + [4436] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1416), 1, + anon_sym_STAR, + ACTIONS(1418), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(694), 1, + STATE(805), 1, sym__expression, - STATE(1206), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(436), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43711,13 +43111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43728,41 +43128,48 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6114] = 18, + [4527] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1464), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1420), 1, + anon_sym_STAR, + ACTIONS(1422), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(723), 1, + STATE(793), 1, sym__expression, - STATE(1272), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(652), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43775,13 +43182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43792,41 +43199,48 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6196] = 18, + [4618] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1466), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1424), 1, + anon_sym_STAR, + ACTIONS(1426), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(713), 1, + STATE(773), 1, sym__expression, - STATE(1331), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(652), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43839,13 +43253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43856,41 +43270,48 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6278] = 18, + [4709] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1162), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_sizeof, + ACTIONS(1428), 1, + anon_sym_STAR, + ACTIONS(1430), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(510), 1, + STATE(770), 1, sym__expression, - STATE(512), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + STATE(427), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, + ACTIONS(1383), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43903,13 +43324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43920,7 +43341,467 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6360] = 18, + [4800] = 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(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1186), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1188), 1, + anon_sym_RPAREN, + ACTIONS(1196), 1, + anon_sym_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1432), 1, + anon_sym_LPAREN2, + ACTIONS(1434), 1, + anon_sym_STAR, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(941), 1, + sym__declaration_specifiers, + STATE(1121), 1, + sym__abstract_declarator, + STATE(1140), 1, + sym_parameter_list, + STATE(1178), 1, + sym_parameter_declaration, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1138), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(650), 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, + [4902] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1436), 1, + anon_sym_LBRACE, + STATE(649), 1, + sym_ms_call_modifier, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1014), 1, + sym__declaration_specifiers, + STATE(272), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 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(650), 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, + [4993] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1438), 1, + anon_sym_LBRACE, + STATE(646), 1, + sym_ms_call_modifier, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1016), 1, + sym__declaration_specifiers, + STATE(120), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 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(650), 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, + [5084] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1440), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_ms_call_modifier, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1009), 1, + sym__declaration_specifiers, + STATE(253), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 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(650), 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, + [5175] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1442), 1, + anon_sym_LBRACE, + STATE(648), 1, + sym_ms_call_modifier, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1011), 1, + sym__declaration_specifiers, + STATE(303), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 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(650), 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, + [5266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1446), 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(1444), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [5321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1450), 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(1448), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [5376] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -43929,15 +43810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1468), 1, + ACTIONS(1452), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(690), 1, + STATE(701), 1, sym__expression, - STATE(1329), 1, + STATE(1318), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -43967,13 +43848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43984,7 +43865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6442] = 18, + [5458] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -43993,15 +43874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1470), 1, + ACTIONS(1454), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(711), 1, + STATE(708), 1, sym__expression, - STATE(1273), 1, + STATE(1419), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44031,13 +43912,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44048,37 +43929,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6524] = 18, + [5540] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1052), 1, - anon_sym_LPAREN2, - ACTIONS(1062), 1, - anon_sym_sizeof, - STATE(417), 1, + ACTIONS(1456), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_string_literal, - STATE(512), 1, - sym_initializer_list, - STATE(628), 1, + STATE(716), 1, sym__expression, - ACTIONS(1054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1056), 2, + STATE(1276), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + 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), 3, sym_true, sym_false, @@ -44095,13 +43976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44112,7 +43993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6606] = 18, + [5622] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44121,15 +44002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1472), 1, + ACTIONS(1458), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(688), 1, + STATE(715), 1, sym__expression, - STATE(1327), 1, + STATE(1313), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44159,13 +44040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44176,7 +44057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6688] = 18, + [5704] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44185,15 +44066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1474), 1, - anon_sym_SEMI, - STATE(417), 1, + ACTIONS(1460), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_string_literal, - STATE(717), 1, + STATE(724), 1, sym__expression, - STATE(1294), 1, + STATE(1412), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44223,13 +44104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44240,7 +44121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6770] = 18, + [5786] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44249,16 +44130,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + ACTIONS(1462), 1, + anon_sym_SEMI, + STATE(429), 1, sym_string_literal, - STATE(703), 1, + STATE(702), 1, sym__expression, - STATE(1218), 1, - sym_initializer_list, + STATE(1398), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -44287,13 +44168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44304,7 +44185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6852] = 18, + [5868] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44313,15 +44194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1476), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1464), 1, + anon_sym_SEMI, + STATE(429), 1, sym_string_literal, - STATE(712), 1, + STATE(711), 1, sym__expression, - STATE(1269), 1, + STATE(1299), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44351,13 +44232,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44368,7 +44249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6934] = 18, + [5950] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44377,15 +44258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1478), 1, + ACTIONS(1466), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(735), 1, + STATE(720), 1, sym__expression, - STATE(1309), 1, + STATE(1406), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44415,13 +44296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44432,7 +44313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7016] = 18, + [6032] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44441,15 +44322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1480), 1, + ACTIONS(1468), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(714), 1, + STATE(697), 1, sym__expression, - STATE(1308), 1, + STATE(1444), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44479,13 +44360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44496,7 +44377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7098] = 18, + [6114] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44505,15 +44386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1482), 1, + ACTIONS(1470), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(736), 1, + STATE(740), 1, sym__expression, - STATE(1270), 1, + STATE(1288), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44543,13 +44424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44560,7 +44441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7180] = 18, + [6196] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44569,15 +44450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1472), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(691), 1, + STATE(738), 1, sym__expression, - STATE(1325), 1, + STATE(1339), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44607,13 +44488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44624,35 +44505,99 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7262] = 18, + [6278] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1158), 1, - anon_sym_sizeof, - STATE(417), 1, + ACTIONS(1474), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_string_literal, - STATE(512), 1, - sym_initializer_list, - STATE(628), 1, + STATE(737), 1, sym__expression, - ACTIONS(1150), 2, + STATE(1337), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6360] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1476), 1, + anon_sym_SEMI, + STATE(429), 1, + sym_string_literal, + STATE(726), 1, + sym__expression, + STATE(1408), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -44671,13 +44616,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44688,7 +44633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7344] = 18, + [6442] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44697,15 +44642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1486), 1, + ACTIONS(1478), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(699), 1, + STATE(743), 1, sym__expression, - STATE(1322), 1, + STATE(1350), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44735,13 +44680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44752,7 +44697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7426] = 18, + [6524] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44761,15 +44706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1488), 1, + ACTIONS(1480), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(708), 1, + STATE(718), 1, sym__expression, - STATE(1313), 1, + STATE(1332), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44799,13 +44744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44816,7 +44761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7508] = 18, + [6606] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44825,15 +44770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1490), 1, + ACTIONS(1482), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(705), 1, + STATE(710), 1, sym__expression, - STATE(1280), 1, + STATE(1317), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44863,13 +44808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44880,35 +44825,99 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7590] = 18, + [6688] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(417), 1, + ACTIONS(1484), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_string_literal, - STATE(510), 1, + STATE(732), 1, sym__expression, - STATE(512), 1, - sym_initializer_list, + STATE(1335), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6770] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1486), 1, + anon_sym_RPAREN, + STATE(429), 1, + sym_string_literal, + STATE(735), 1, + sym__expression, + STATE(1285), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + 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), 3, @@ -44927,13 +44936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44944,7 +44953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7672] = 18, + [6852] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44953,15 +44962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1492), 1, + ACTIONS(1488), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(726), 1, + STATE(731), 1, sym__expression, - STATE(1398), 1, + STATE(1283), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44991,13 +45000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45008,7 +45017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7754] = 18, + [6934] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45017,16 +45026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1494), 1, - anon_sym_SEMI, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(710), 1, + STATE(741), 1, sym__expression, - STATE(1400), 1, - sym_comma_expression, + STATE(1220), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45055,13 +45064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45072,7 +45081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7836] = 18, + [7016] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45081,15 +45090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1496), 1, + ACTIONS(1490), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(722), 1, + STATE(699), 1, sym__expression, - STATE(1312), 1, + STATE(1418), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45119,13 +45128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45136,7 +45145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7918] = 18, + [7098] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45145,15 +45154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1498), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1492), 1, + anon_sym_SEMI, + STATE(429), 1, sym_string_literal, - STATE(734), 1, + STATE(698), 1, sym__expression, - STATE(1436), 1, + STATE(1366), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45183,13 +45192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45200,7 +45209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8000] = 18, + [7180] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45209,15 +45218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1500), 1, + ACTIONS(1494), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(692), 1, + STATE(727), 1, sym__expression, - STATE(1432), 1, + STATE(1440), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45247,13 +45256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45264,7 +45273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8082] = 18, + [7262] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45273,15 +45282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1502), 1, + ACTIONS(1496), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(728), 1, + STATE(703), 1, sym__expression, - STATE(1404), 1, + STATE(1312), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45311,13 +45320,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45328,7 +45337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8164] = 17, + [7344] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45337,14 +45346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1504), 1, - anon_sym_SEMI, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(775), 1, + STATE(744), 1, sym__expression, + STATE(1239), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45373,13 +45384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45390,35 +45401,101 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8243] = 17, + [7426] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1498), 1, + anon_sym_RPAREN, + STATE(429), 1, + sym_string_literal, + STATE(729), 1, + sym__expression, + STATE(1281), 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), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [7508] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(888), 1, anon_sym_sizeof, - ACTIONS(1506), 1, - anon_sym_RBRACK, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(547), 1, sym__expression, - ACTIONS(1054), 2, + STATE(549), 1, + sym_initializer_list, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -45435,13 +45512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45452,55 +45529,71 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8322] = 3, + [7590] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1510), 13, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(429), 1, + sym_string_literal, + STATE(549), 1, + sym_initializer_list, + STATE(630), 1, + sym__expression, + ACTIONS(1090), 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(1508), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_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, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [8373] = 17, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [7672] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45509,14 +45602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1512), 1, - anon_sym_SEMI, - STATE(417), 1, + ACTIONS(1500), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_string_literal, - STATE(777), 1, + STATE(728), 1, sym__expression, + STATE(1277), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45545,13 +45640,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45562,7 +45657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8452] = 17, + [7754] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45571,14 +45666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1514), 1, - anon_sym_SEMI, - STATE(417), 1, + ACTIONS(1502), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_string_literal, - STATE(781), 1, + STATE(725), 1, sym__expression, + STATE(1314), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45607,13 +45704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45624,35 +45721,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8531] = 17, + [7836] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1052), 1, - anon_sym_LPAREN2, - ACTIONS(1062), 1, - anon_sym_sizeof, - ACTIONS(1516), 1, - anon_sym_RBRACK, - STATE(417), 1, + ACTIONS(1504), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(721), 1, sym__expression, - ACTIONS(1054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1056), 2, + STATE(1321), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + 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), 3, sym_true, sym_false, @@ -45669,13 +45768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45686,33 +45785,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8610] = 17, + [7918] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1518), 1, - anon_sym_SEMI, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1166), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(821), 1, + STATE(549), 1, + sym_initializer_list, + STATE(630), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -45731,13 +45832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45748,7 +45849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8689] = 17, + [8000] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45757,14 +45858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1520), 1, - anon_sym_SEMI, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(787), 1, + STATE(547), 1, sym__expression, + STATE(549), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45793,13 +45896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45810,7 +45913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8768] = 17, + [8082] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45819,14 +45922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1522), 1, - anon_sym_SEMI, - STATE(417), 1, + ACTIONS(1506), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_string_literal, - STATE(824), 1, + STATE(696), 1, sym__expression, + STATE(1320), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45855,13 +45960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45872,7 +45977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8847] = 17, + [8164] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45881,14 +45986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1524), 1, - anon_sym_SEMI, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(790), 1, + STATE(714), 1, sym__expression, + STATE(1397), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45917,13 +46022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45934,7 +46039,69 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8926] = 17, + [8243] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1508), 1, + anon_sym_RBRACK, + STATE(429), 1, + sym_string_literal, + STATE(640), 1, + sym__expression, + ACTIONS(1090), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [8322] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45943,13 +46110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1510), 1, anon_sym_SEMI, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(741), 1, + STATE(779), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45979,13 +46146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45996,7 +46163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9005] = 17, + [8401] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46005,13 +46172,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1512), 1, anon_sym_RPAREN, - STATE(417), 1, + STATE(429), 1, + sym_string_literal, + STATE(688), 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), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [8480] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1514), 1, + anon_sym_SEMI, + STATE(429), 1, sym_string_literal, - STATE(678), 1, + STATE(750), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46041,13 +46270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46058,33 +46287,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9084] = 17, + [8559] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1530), 1, + ACTIONS(1516), 1, anon_sym_RBRACK, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(640), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46103,13 +46332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46120,7 +46349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9163] = 17, + [8638] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46129,13 +46358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1518), 1, anon_sym_SEMI, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(740), 1, + STATE(763), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46165,13 +46394,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [8717] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1520), 1, + anon_sym_RBRACK, + STATE(429), 1, + sym_string_literal, + STATE(640), 1, + sym__expression, + ACTIONS(1090), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46182,7 +46473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9242] = 17, + [8796] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46191,13 +46482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(682), 1, + STATE(717), 1, sym__expression, - STATE(1207), 1, + STATE(1422), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46227,13 +46518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46244,33 +46535,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9321] = 17, + [8875] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1534), 1, + ACTIONS(1522), 1, anon_sym_RBRACK, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(640), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46289,13 +46580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46306,7 +46597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9400] = 17, + [8954] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46315,13 +46606,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1536), 1, - anon_sym_RPAREN, - STATE(417), 1, + ACTIONS(1524), 1, + anon_sym_SEMI, + STATE(429), 1, sym_string_literal, - STATE(684), 1, + STATE(789), 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), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [9033] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1526), 1, + anon_sym_SEMI, + STATE(429), 1, + sym_string_literal, + STATE(790), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46351,13 +46704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46368,7 +46721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9479] = 17, + [9112] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46377,13 +46730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1538), 1, + ACTIONS(1528), 1, anon_sym_SEMI, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(763), 1, + STATE(756), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46413,13 +46766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46430,7 +46783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9558] = 17, + [9191] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46439,13 +46792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1540), 1, + ACTIONS(1530), 1, anon_sym_SEMI, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(746), 1, + STATE(783), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46475,13 +46828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46492,35 +46845,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9637] = 17, + [9270] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1052), 1, - anon_sym_LPAREN2, - ACTIONS(1062), 1, - anon_sym_sizeof, - ACTIONS(1542), 1, - anon_sym_RBRACK, - STATE(417), 1, + ACTIONS(1532), 1, + anon_sym_SEMI, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(748), 1, sym__expression, - ACTIONS(1054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + 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), 3, sym_true, sym_false, @@ -46537,13 +46890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46554,7 +46907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9716] = 17, + [9349] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46563,13 +46916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1544), 1, + ACTIONS(1534), 1, anon_sym_SEMI, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(742), 1, + STATE(819), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46599,13 +46952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46616,33 +46969,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9795] = 17, + [9428] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1546), 1, + ACTIONS(1536), 1, anon_sym_RBRACK, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(640), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46661,13 +47014,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46678,33 +47031,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9874] = 17, + [9507] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1548), 1, + ACTIONS(1538), 1, anon_sym_RBRACK, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(640), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46723,13 +47076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46740,35 +47093,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9953] = 17, + [9586] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1052), 1, - anon_sym_LPAREN2, - ACTIONS(1062), 1, - anon_sym_sizeof, - ACTIONS(1550), 1, - anon_sym_RBRACK, - STATE(417), 1, + ACTIONS(1540), 1, + anon_sym_SEMI, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(764), 1, sym__expression, - ACTIONS(1054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + 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), 3, sym_true, sym_false, @@ -46785,13 +47138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46802,35 +47155,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10032] = 17, + [9665] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1052), 1, - anon_sym_LPAREN2, - ACTIONS(1062), 1, - anon_sym_sizeof, - ACTIONS(1552), 1, - anon_sym_RBRACK, - STATE(417), 1, + ACTIONS(1542), 1, + anon_sym_SEMI, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(785), 1, sym__expression, - ACTIONS(1054), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + 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), 3, sym_true, sym_false, @@ -46847,13 +47200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46864,35 +47217,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10111] = 17, + [9744] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(870), 1, sym_identifier, - STATE(417), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1544), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(720), 1, + STATE(640), 1, sym__expression, - STATE(1389), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -46909,13 +47262,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46926,7 +47279,55 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10190] = 17, + [9823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1548), 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(1546), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [9874] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46935,14 +47336,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + ACTIONS(1550), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_string_literal, - STATE(721), 1, + STATE(685), 1, sym__expression, - STATE(1414), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46971,13 +47372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46988,33 +47389,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10269] = 17, + [9953] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1554), 1, + ACTIONS(1552), 1, anon_sym_RBRACK, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(640), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -47033,13 +47434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47050,31 +47451,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10348] = 16, + [10032] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1158), 1, - anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(818), 1, + STATE(683), 1, sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, + STATE(1269), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -47091,265 +47494,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(634), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [10424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1558), 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(1556), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [10474] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1564), 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(1560), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [10534] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1580), 1, - anon_sym_AMP_AMP, - ACTIONS(1582), 1, - anon_sym_PIPE, - ACTIONS(1584), 1, - anon_sym_CARET, - ACTIONS(1586), 1, - anon_sym_AMP, - ACTIONS(1596), 1, - anon_sym_EQ, - ACTIONS(1598), 1, - anon_sym_QMARK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1590), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1592), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1572), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [10618] = 8, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [10111] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1602), 13, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1554), 1, + anon_sym_SEMI, + STATE(429), 1, + sym_string_literal, + STATE(772), 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_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(1600), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [10678] = 16, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [10190] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + ACTIONS(1556), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(626), 1, + STATE(640), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -47368,13 +47620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47385,33 +47637,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10754] = 16, + [10269] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + ACTIONS(1558), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_string_literal, - STATE(501), 1, + STATE(640), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -47428,13 +47682,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47445,31 +47699,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10830] = 16, + [10348] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(888), 1, - anon_sym_sizeof, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(567), 1, + STATE(519), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -47488,13 +47742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47505,54 +47759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1608), 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(1606), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [10956] = 16, + [10424] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -47563,9 +47770,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(502), 1, + STATE(612), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -47595,13 +47802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47612,33 +47819,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11032] = 16, + [10500] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(618), 1, + STATE(639), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1164), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -47655,13 +47862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47672,59 +47879,67 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11108] = 8, + [10576] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(888), 1, + anon_sym_sizeof, + ACTIONS(1560), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1612), 13, - anon_sym_DASH, - anon_sym_PLUS, + STATE(429), 1, + sym_string_literal, + STATE(604), 1, + sym__expression, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1610), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [11168] = 16, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [10652] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47733,11 +47948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(816), 1, + STATE(664), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47767,13 +47982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47784,78 +47999,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1616), 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(1614), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [11294] = 16, + [10728] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1158), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(622), 1, + STATE(607), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -47874,13 +48042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47891,33 +48059,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11370] = 16, + [10804] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(621), 1, + STATE(517), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -47934,13 +48102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47951,31 +48119,91 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11446] = 16, + [10880] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1158), 1, - anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(822), 1, + STATE(665), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [10956] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + STATE(429), 1, + sym_string_literal, + STATE(656), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -47994,13 +48222,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48011,31 +48239,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11522] = 16, + [11032] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(615), 1, + STATE(640), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -48054,13 +48282,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48071,10 +48299,118 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11598] = 3, + [11108] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1566), 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(1562), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [11168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 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(1574), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [11218] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1620), 13, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1580), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -48088,10 +48424,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1618), 29, + ACTIONS(1578), 24, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -48100,8 +48435,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -48116,9 +48449,7 @@ 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, - [11648] = 16, + [11276] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48127,11 +48458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(651), 1, + STATE(608), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48161,13 +48492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48178,7 +48509,61 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11724] = 16, + [11352] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1586), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1588), 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(1582), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [11416] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48187,11 +48572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(752), 1, + STATE(823), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48221,13 +48606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48238,127 +48623,466 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11800] = 16, + [11492] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1140), 1, - sym_identifier, - STATE(417), 1, - sym_string_literal, - STATE(524), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1586), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1588), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1582), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [11558] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(605), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [11876] = 16, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1592), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1594), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1586), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1588), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1582), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + 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, + [11628] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1140), 1, - sym_identifier, - STATE(417), 1, - sym_string_literal, - STATE(503), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1592), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1594), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1596), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1586), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1588), 4, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_EQ, + ACTIONS(1582), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [11700] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_AMP, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(605), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [11952] = 16, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1592), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1594), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1596), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1586), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1588), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(1582), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [11774] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_AMP, + ACTIONS(1600), 1, + anon_sym_CARET, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1588), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1592), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1594), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1596), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1586), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1582), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [11850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1604), 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(1602), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [11900] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1588), 1, + anon_sym_EQ, + ACTIONS(1598), 1, + anon_sym_AMP, + ACTIONS(1600), 1, + anon_sym_CARET, + ACTIONS(1606), 1, + anon_sym_PIPE, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1592), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1594), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1596), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1586), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1582), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [11978] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1588), 1, + anon_sym_EQ, + ACTIONS(1598), 1, + anon_sym_AMP, + ACTIONS(1600), 1, + anon_sym_CARET, + ACTIONS(1606), 1, + anon_sym_PIPE, + ACTIONS(1608), 1, + anon_sym_AMP_AMP, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1592), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1594), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1596), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1586), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1582), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [12058] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48367,11 +49091,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(648), 1, + STATE(746), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48401,13 +49125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48418,22 +49142,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12028] = 8, + [12134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1624), 13, + ACTIONS(1248), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -48447,9 +49159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1622), 22, + ACTIONS(1242), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -48458,6 +49171,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -48470,66 +49185,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [12088] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [12184] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - STATE(555), 1, + STATE(573), 1, sym_argument_list, ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1628), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1586), 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(1626), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [12146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 13, + ACTIONS(1588), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -48538,10 +49219,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1630), 29, + ACTIONS(1582), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -48550,8 +49230,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -48564,11 +49242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [12196] = 16, + [12246] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48577,11 +49251,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(647), 1, + STATE(660), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48611,13 +49285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48628,31 +49302,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12272] = 16, + [12322] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1158), 1, - anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(619), 1, + STATE(778), 1, sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48671,13 +49345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48688,7 +49362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12348] = 16, + [12398] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48697,11 +49371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(646), 1, + STATE(658), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48731,13 +49405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48748,7 +49422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12424] = 16, + [12474] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48757,11 +49431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(649), 1, + STATE(655), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48791,13 +49465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48808,7 +49482,70 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12500] = 16, + [12550] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_AMP, + ACTIONS(1600), 1, + anon_sym_CARET, + ACTIONS(1606), 1, + anon_sym_PIPE, + ACTIONS(1608), 1, + anon_sym_AMP_AMP, + ACTIONS(1612), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1614), 1, + anon_sym_EQ, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1592), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1594), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1596), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1586), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1610), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [12632] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48817,11 +49554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(650), 1, + STATE(792), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48851,13 +49588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48868,31 +49605,91 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12576] = 16, + [12708] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1158), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, anon_sym_sizeof, - ACTIONS(1634), 1, + STATE(429), 1, + sym_string_literal, + STATE(519), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [12784] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1154), 1, + sym_identifier, + ACTIONS(1156), 1, anon_sym_LPAREN2, - STATE(417), 1, + ACTIONS(1166), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(810), 1, + STATE(804), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48911,13 +49708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48928,31 +49725,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12652] = 16, + [12860] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1166), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(776), 1, + STATE(632), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48971,13 +49768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48988,84 +49785,91 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12728] = 9, + [12936] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1154), 1, + sym_identifier, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(1246), 1, - anon_sym_STAR, - ACTIONS(1251), 1, - anon_sym_EQ, - ACTIONS(1257), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(1249), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1255), 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(1244), 11, + ACTIONS(1166), 1, + anon_sym_sizeof, + STATE(429), 1, + sym_string_literal, + STATE(803), 1, + sym__expression, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1162), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 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, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [12790] = 16, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(644), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [13012] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(523), 1, + STATE(624), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49084,13 +49888,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49101,7 +49905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12866] = 16, + [13088] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49110,11 +49914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(652), 1, + STATE(654), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49144,13 +49948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49161,116 +49965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12942] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1602), 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(1600), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [13006] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1602), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(1600), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [13072] = 16, + [13164] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49279,11 +49974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(653), 1, + STATE(757), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49313,13 +50008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49330,49 +50025,44 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13148] = 13, + [13240] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1574), 2, + ACTIONS(1618), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1590), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1592), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1602), 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(1600), 20, + ACTIONS(1616), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -49387,7 +50077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [13218] = 16, + [13300] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49396,11 +50086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(655), 1, + STATE(821), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49430,13 +50120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49447,52 +50137,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13294] = 14, + [13376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, + ACTIONS(1622), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1590), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1592), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1602), 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(1600), 18, + ACTIONS(1620), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -49505,31 +50180,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [13366] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13426] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(1158), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(744), 1, + STATE(762), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49548,13 +50227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49565,78 +50244,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 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(1636), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [13492] = 16, + [13502] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1158), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + ACTIONS(1624), 1, + anon_sym_LPAREN2, + STATE(429), 1, sym_string_literal, - STATE(815), 1, + STATE(781), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49655,13 +50287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49672,187 +50304,67 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13568] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1586), 1, - anon_sym_AMP, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1590), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1592), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1602), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1600), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [13642] = 16, + [13578] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_CARET, - ACTIONS(1586), 1, - anon_sym_AMP, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + STATE(429), 1, + sym_string_literal, + STATE(657), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1590), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1592), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1602), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1576), 3, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1600), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [13718] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1582), 1, - anon_sym_PIPE, - ACTIONS(1584), 1, - anon_sym_CARET, - ACTIONS(1586), 1, anon_sym_AMP, - ACTIONS(1602), 1, - anon_sym_EQ, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1590), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1592), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1600), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [13796] = 16, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [13654] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49861,11 +50373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(805), 1, + STATE(800), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49895,13 +50407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49912,146 +50424,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13872] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1580), 1, - anon_sym_AMP_AMP, - ACTIONS(1582), 1, - anon_sym_PIPE, - ACTIONS(1584), 1, - anon_sym_CARET, - ACTIONS(1586), 1, - anon_sym_AMP, - ACTIONS(1602), 1, - anon_sym_EQ, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1590), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1592), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1600), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [13952] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1602), 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(1600), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [14014] = 16, + [13730] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(503), 1, + STATE(774), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50070,13 +50467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50087,33 +50484,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14090] = 16, + [13806] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(549), 1, + STATE(632), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -50130,13 +50527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50147,195 +50544,67 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1642), 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(1640), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1646), 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(1644), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14266] = 3, + [13882] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1650), 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(1648), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(19), 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_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 13, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + STATE(429), 1, + sym_string_literal, + STATE(659), 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_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(1238), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14366] = 16, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [13958] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -50344,11 +50613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(820), 1, + STATE(761), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -50378,13 +50647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50395,31 +50664,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14442] = 16, + [14034] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, - anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + ACTIONS(1626), 1, + anon_sym_LPAREN2, + STATE(429), 1, sym_string_literal, - STATE(630), 1, + STATE(627), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -50438,13 +50707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50455,57 +50724,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14518] = 19, + [14110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1580), 1, - anon_sym_AMP_AMP, - ACTIONS(1582), 1, + ACTIONS(1630), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1584), 1, anon_sym_CARET, - ACTIONS(1586), 1, anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_EQ, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1590), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1592), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1594), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1652), 16, + anon_sym_EQ, + ACTIONS(1628), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -50518,33 +50767,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [14600] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [14160] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(547), 1, + STATE(636), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -50561,13 +50814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50578,31 +50831,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14676] = 16, + [14236] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(632), 1, + STATE(624), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -50621,13 +50874,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50638,91 +50891,131 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14752] = 16, + [14312] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1244), 1, anon_sym_LPAREN2, - ACTIONS(1158), 1, - anon_sym_sizeof, - STATE(417), 1, - sym_string_literal, - STATE(779), 1, - sym__expression, - ACTIONS(1150), 2, + ACTIONS(1250), 1, + anon_sym_STAR, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1263), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1253), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1259), 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(1248), 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(1242), 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, + [14374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1634), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1154), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1156), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1632), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(634), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [14828] = 16, + anon_sym_DOT, + anon_sym_DASH_GT, + [14424] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1158), 1, - anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(785), 1, + STATE(661), 1, sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50741,13 +51034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50758,33 +51051,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14904] = 16, + [14500] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1158), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(788), 1, + STATE(638), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -50801,13 +51094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50818,31 +51111,78 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14980] = 16, + [14576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1638), 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(1636), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [14626] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(1158), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(797), 1, + STATE(829), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50861,13 +51201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50878,31 +51218,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15056] = 16, + [14702] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(550), 1, + STATE(826), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50921,13 +51261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50938,41 +51278,27 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15132] = 11, + [14778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1574), 2, + ACTIONS(1642), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1658), 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(1656), 22, + ACTIONS(1640), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -50980,7 +51306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -50993,31 +51321,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [15198] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [14828] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1158), 1, - anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(799), 1, + STATE(713), 1, sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51036,13 +51368,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51053,33 +51385,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15274] = 16, + [14904] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(546), 1, + STATE(639), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51096,13 +51428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51113,33 +51445,127 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15350] = 16, + [14980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1248), 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(1242), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [15030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1646), 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(1644), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [15080] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(545), 1, + STATE(631), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51156,13 +51582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51173,31 +51599,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15426] = 16, + [15156] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(870), 1, sym_identifier, - STATE(417), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(654), 1, + STATE(521), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51216,13 +51642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51233,31 +51659,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15502] = 16, + [15232] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(524), 1, + STATE(835), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51276,13 +51702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51293,33 +51719,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15578] = 16, + [15308] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(870), 1, sym_identifier, - STATE(417), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(715), 1, + STATE(635), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51336,13 +51762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51353,10 +51779,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15654] = 3, + [15384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1662), 13, + ACTIONS(1650), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -51370,7 +51796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1660), 29, + ACTIONS(1648), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -51381,9 +51807,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -51400,31 +51826,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [15704] = 16, + [15434] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(870), 1, sym_identifier, - STATE(417), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(719), 1, + STATE(523), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51443,13 +51869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51460,33 +51886,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15780] = 16, + [15510] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(541), 1, + STATE(628), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51503,13 +51929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51520,31 +51946,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15856] = 16, + [15586] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1158), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(800), 1, + STATE(524), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51563,13 +51989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51580,140 +52006,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 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(1664), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [15982] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1140), 1, - sym_identifier, - STATE(417), 1, - sym_string_literal, - STATE(645), 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), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(605), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(592), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16058] = 16, + [15662] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1158), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(801), 1, + STATE(625), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51730,13 +52049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51747,10 +52066,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16134] = 3, + [15738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 13, + ACTIONS(1654), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -51764,7 +52083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1668), 29, + ACTIONS(1652), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -51794,7 +52113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [16184] = 16, + [15788] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -51805,9 +52124,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(539), 1, + STATE(525), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -51837,13 +52156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51854,31 +52173,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16260] = 16, + [15864] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(870), 1, sym_identifier, - STATE(417), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(804), 1, + STATE(526), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51897,13 +52216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51914,31 +52233,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16336] = 16, + [15940] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(870), 1, sym_identifier, - STATE(417), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(747), 1, + STATE(527), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51957,13 +52276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51974,33 +52293,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16412] = 16, + [16016] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1062), 1, - anon_sym_sizeof, - ACTIONS(1672), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - STATE(417), 1, + ACTIONS(1166), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(614), 1, + STATE(795), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1164), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -52017,13 +52336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52034,33 +52353,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16488] = 16, + [16092] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(625), 1, + STATE(529), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52077,13 +52396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52094,31 +52413,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16564] = 16, + [16168] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(629), 1, + STATE(623), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -52137,13 +52456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52154,33 +52473,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16640] = 16, + [16244] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(619), 1, + STATE(530), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52197,13 +52516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52214,33 +52533,93 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16716] = 16, + [16320] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(627), 1, + STATE(608), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(572), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [16396] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + STATE(429), 1, + sym_string_literal, + STATE(653), 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), 3, sym_true, sym_false, @@ -52257,13 +52636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52274,33 +52653,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16792] = 16, + [16472] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(622), 1, + STATE(533), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52317,13 +52696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52334,33 +52713,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16868] = 16, + [16548] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(616), 1, + STATE(824), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1164), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -52377,13 +52756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52394,125 +52773,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 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(1238), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [16994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1676), 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(1674), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [17044] = 16, + [16624] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1678), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - STATE(417), 1, + ACTIONS(1166), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(657), 1, + STATE(798), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52531,13 +52816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52548,31 +52833,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17120] = 16, + [16700] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1154), 1, sym_identifier, - STATE(417), 1, + ACTIONS(1156), 1, + anon_sym_LPAREN2, + ACTIONS(1166), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(501), 1, + STATE(810), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1160), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52591,13 +52876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52608,33 +52893,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17196] = 16, + [16776] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(624), 1, + STATE(769), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1164), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -52651,13 +52936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52668,31 +52953,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17272] = 16, + [16852] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_LPAREN2, - ACTIONS(1158), 1, - anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(813), 1, + STATE(723), 1, sym__expression, - ACTIONS(1150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52711,13 +52996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52728,31 +53013,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17348] = 16, + [16928] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(1158), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(625), 1, + STATE(807), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52771,13 +53056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52788,33 +53073,80 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17424] = 16, + [17004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1658), 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(1656), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17054] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1146), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1158), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(806), 1, + STATE(637), 1, sym__expression, - ACTIONS(1150), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1152), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1154), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1156), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52831,13 +53163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(634), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52848,31 +53180,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17500] = 16, + [17130] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1156), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1166), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(536), 1, + STATE(806), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1158), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1160), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1164), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52891,13 +53223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(644), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52908,31 +53240,133 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17576] = 16, + [17206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 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(1660), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17256] = 11, ACTIONS(3), 1, sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1586), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1666), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1664), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17322] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(537), 1, + STATE(662), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52951,13 +53385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52968,31 +53402,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17652] = 16, + [17398] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(620), 1, + STATE(622), 1, sym__expression, - ACTIONS(1054), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1056), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1060), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1154), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -53011,13 +53445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(556), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53028,33 +53462,137 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17728] = 16, + [17474] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1672), 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(1670), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17534] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 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(1582), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17594] = 16, + ACTIONS(3), 1, + sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(870), 1, sym_identifier, - STATE(417), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(429), 1, sym_string_literal, - STATE(743), 1, + STATE(634), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -53071,13 +53609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53088,7 +53626,54 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17804] = 16, + [17670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1676), 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(1674), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17720] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53097,11 +53682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1140), 1, + ACTIONS(1144), 1, sym_identifier, - STATE(417), 1, + STATE(429), 1, sym_string_literal, - STATE(771), 1, + STATE(607), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53131,13 +53716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(605), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(592), 10, + STATE(572), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53148,12 +53733,60 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17880] = 5, + [17796] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_AMP, + ACTIONS(1600), 1, + anon_sym_CARET, + ACTIONS(1606), 1, + anon_sym_PIPE, + ACTIONS(1608), 1, + anon_sym_AMP_AMP, + ACTIONS(1612), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1680), 1, anon_sym_EQ, - ACTIONS(1255), 10, + ACTIONS(1682), 1, + anon_sym_QMARK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1590), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1592), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1594), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1596), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1586), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -53164,90 +53797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1244), 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(1238), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [17933] = 5, + [17880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1684), 1, + ACTIONS(1688), 1, anon_sym_LBRACK_LBRACK, - STATE(606), 2, + STATE(613), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(1680), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(1682), 20, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [17986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 18, + ACTIONS(1684), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -53266,14 +53824,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1162), 21, + ACTIONS(1686), 20, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, @@ -53288,14 +53845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18033] = 6, + [17933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1264), 1, - anon_sym_COLON, - ACTIONS(1255), 10, + ACTIONS(1259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -53306,7 +53861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1244), 12, + ACTIONS(1248), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53319,8 +53874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1238), 15, + ACTIONS(1242), 18, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -53329,20 +53885,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18086] = 6, + [17986] = 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(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1186), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1188), 1, + anon_sym_RPAREN, + ACTIONS(1198), 1, + sym_identifier, + STATE(705), 1, + sym__type_specifier, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(941), 1, + sym__declaration_specifiers, + STATE(1178), 1, + sym_parameter_declaration, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(874), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(650), 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, + [18067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_COLON, - ACTIONS(1255), 10, + ACTIONS(1259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -53353,7 +53972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1244), 12, + ACTIONS(1248), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53366,7 +53985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1238), 15, + ACTIONS(1242), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -53382,14 +54001,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18139] = 6, + [18120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(1152), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [18167] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1260), 1, + ACTIONS(1257), 1, anon_sym_COLON, - ACTIONS(1255), 10, + ACTIONS(1259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -53400,7 +54063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1244), 12, + ACTIONS(1248), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53413,7 +54076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1238), 15, + ACTIONS(1242), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -53429,14 +54092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18192] = 6, + [18220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1253), 1, + ACTIONS(1261), 1, anon_sym_COLON, - ACTIONS(1255), 10, + ACTIONS(1259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -53447,7 +54110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1244), 12, + ACTIONS(1248), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53460,7 +54123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1238), 15, + ACTIONS(1242), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -53476,10 +54139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18245] = 3, + [18273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 18, + ACTIONS(1168), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -53498,7 +54161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1166), 21, + ACTIONS(1170), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -53520,163 +54183,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18292] = 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(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1184), 1, - anon_sym_RPAREN, - ACTIONS(1194), 1, - sym_identifier, - STATE(701), 1, - sym__type_specifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(894), 1, - sym__declaration_specifiers, - STATE(1171), 1, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(642), 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, - [18373] = 11, + [18320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(1268), 1, + anon_sym_COLON, + ACTIONS(1259), 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(1248), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1691), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1658), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - ACTIONS(1656), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1242), 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_RBRACK, + anon_sym_SEMI, + 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, - [18435] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [18373] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_EQ, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1695), 1, - anon_sym_PIPE, ACTIONS(1697), 1, - anon_sym_CARET, + anon_sym_AMP_AMP, ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_CARET, + ACTIONS(1703), 1, anon_sym_AMP, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1701), 2, + ACTIONS(1705), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 2, + ACTIONS(1707), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1705), 2, + ACTIONS(1709), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1691), 3, + ACTIONS(1711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1600), 14, + ACTIONS(1582), 13, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -53689,56 +54288,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18509] = 20, + [18449] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1596), 1, - anon_sym_EQ, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_CARET, - ACTIONS(1699), 1, - anon_sym_AMP, - ACTIONS(1707), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1709), 1, - anon_sym_AMP_AMP, - ACTIONS(1711), 1, - anon_sym_QMARK, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1701), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1703), 2, + ACTIONS(1707), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1705), 2, + ACTIONS(1709), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1691), 3, + ACTIONS(1711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1572), 11, + ACTIONS(1588), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1582), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -53749,53 +54341,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18589] = 19, + [18515] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1654), 1, - anon_sym_EQ, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1695), 1, - anon_sym_PIPE, - ACTIONS(1697), 1, - anon_sym_CARET, - ACTIONS(1699), 1, - anon_sym_AMP, - ACTIONS(1707), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1709), 1, - anon_sym_AMP_AMP, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1672), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1701), 2, + anon_sym_EQ, + ACTIONS(1670), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1705), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1652), 12, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -53808,37 +54389,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18667] = 9, + [18571] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1691), 3, + ACTIONS(1693), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1602), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1588), 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(1600), 18, + ACTIONS(1582), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53857,36 +54440,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18725] = 8, + [18633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1548), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(1546), 20, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [18679] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1564), 13, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1666), 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(1560), 18, + ACTIONS(1664), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53905,29 +54534,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18781] = 10, + [18741] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 3, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1602), 8, + ACTIONS(1588), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -53936,7 +54565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1600), 18, + ACTIONS(1582), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53955,22 +54584,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18841] = 8, + [18801] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1614), 1, + anon_sym_EQ, + ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(555), 1, + ACTIONS(1697), 1, + anon_sym_AMP_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_CARET, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1693), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1705), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1610), 12, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [18879] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + STATE(573), 1, + sym_argument_list, ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1624), 13, + ACTIONS(1618), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53984,7 +54672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1622), 18, + ACTIONS(1616), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54003,19 +54691,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18897] = 7, + [18935] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1680), 1, + anon_sym_EQ, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1697), 1, + anon_sym_AMP_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_CARET, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(1713), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1715), 1, + anon_sym_QMARK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1693), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1705), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [19015] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(555), 1, + STATE(573), 1, sym_argument_list, ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1628), 13, + ACTIONS(1588), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54029,7 +54780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1626), 20, + ACTIONS(1582), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54048,9 +54799,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, - [18951] = 19, + [19071] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -54065,19 +54814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - ACTIONS(1713), 1, + ACTIONS(1717), 1, anon_sym_DOT_DOT_DOT, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(894), 1, + STATE(941), 1, sym__declaration_specifiers, - STATE(1220), 1, + STATE(1215), 1, sym_parameter_declaration, ACTIONS(45), 4, anon_sym_const, @@ -54095,13 +54844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -54109,45 +54858,49 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [19029] = 11, + [19149] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(555), 1, + ACTIONS(1703), 1, + anon_sym_AMP, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, + ACTIONS(1705), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1602), 6, + ACTIONS(1588), 3, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(1600), 18, + ACTIONS(1695), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1582), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -54160,27 +54913,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19091] = 8, + [19219] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1602), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1588), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -54189,7 +54943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1600), 18, + ACTIONS(1582), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54208,52 +54962,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19147] = 18, + [19277] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_EQ, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1695), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1701), 1, anon_sym_CARET, - ACTIONS(1699), 1, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(1709), 1, - anon_sym_AMP_AMP, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1701), 2, + ACTIONS(1705), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 2, + ACTIONS(1707), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1705), 2, + ACTIONS(1709), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1691), 3, + ACTIONS(1711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1600), 13, + ACTIONS(1582), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -54266,47 +55019,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19223] = 13, + [19351] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1703), 2, + ACTIONS(1705), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1707), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1705), 2, + ACTIONS(1709), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1691), 3, + ACTIONS(1711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1602), 4, + ACTIONS(1588), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(1600), 16, + ACTIONS(1582), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -54319,94 +55073,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19289] = 8, + [19419] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1612), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(1701), 1, anon_sym_CARET, + ACTIONS(1703), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1610), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [19345] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1588), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1701), 2, + ACTIONS(1705), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 2, + ACTIONS(1707), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1705), 2, + ACTIONS(1709), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1691), 3, + ACTIONS(1711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1602), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1600), 14, + ACTIONS(1582), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, @@ -54421,49 +55129,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19413] = 15, + [19491] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1699), 1, - anon_sym_AMP, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1689), 2, + ACTIONS(1580), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1701), 2, + anon_sym_EQ, + ACTIONS(1578), 20, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1705), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1602), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1600), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -54476,93 +55174,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1510), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(1508), 20, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [19529] = 16, + [19545] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1697), 1, - anon_sym_CARET, - ACTIONS(1699), 1, - anon_sym_AMP, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1602), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1689), 2, + ACTIONS(1566), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1693), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1701), 2, + anon_sym_EQ, + ACTIONS(1562), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1705), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1691), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1600), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -54578,7 +55227,7 @@ static const uint16_t ts_small_parse_table[] = { [19601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 13, + ACTIONS(1630), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54592,7 +55241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1640), 24, + ACTIONS(1628), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -54617,23 +55266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19646] = 5, + [19646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, - anon_sym_EQ, - ACTIONS(1717), 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(1244), 12, + ACTIONS(1642), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54646,7 +55282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1238), 14, + anon_sym_EQ, + ACTIONS(1640), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -54657,14 +55294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19695] = 3, + [19691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1662), 13, + ACTIONS(1576), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54678,7 +55325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1660), 24, + ACTIONS(1574), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -54703,10 +55350,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19740] = 3, + [19736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 13, + ACTIONS(1719), 1, + anon_sym_EQ, + ACTIONS(1721), 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(1248), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54719,8 +55379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1606), 24, + ACTIONS(1242), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -54731,16 +55390,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, @@ -54760,15 +55409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1026), 1, + STATE(1024), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -54786,13 +55435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -54800,54 +55449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [19857] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym___attribute__, - ACTIONS(1729), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1732), 1, - anon_sym___declspec, - ACTIONS(1735), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1723), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1721), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(638), 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(1719), 11, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [19913] = 17, + [19857] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -54862,15 +55464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1017), 1, + STATE(1034), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -54888,13 +55490,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 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, + [19929] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1730), 1, + anon_sym___attribute__, + ACTIONS(1733), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1736), 1, + anon_sym___declspec, + ACTIONS(1739), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1727), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(1725), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(647), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -54902,6 +55539,18 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, + ACTIONS(1723), 11, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, [19985] = 17, ACTIONS(3), 1, sym_comment, @@ -54917,15 +55566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1016), 1, + STATE(1040), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -54943,13 +55592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -54972,15 +55621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(701), 1, + STATE(705), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1012), 1, + STATE(1028), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -54998,13 +55647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(642), 7, + STATE(650), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -55027,13 +55676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(696), 1, + STATE(739), 1, sym__type_specifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(45), 4, anon_sym_const, @@ -55051,13 +55700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(638), 7, + STATE(647), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -55068,39 +55717,39 @@ static const uint16_t ts_small_parse_table[] = { [20198] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 1, + ACTIONS(1190), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1192), 1, anon_sym_STAR, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(1746), 1, + ACTIONS(1750), 1, anon_sym_LBRACK, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1013), 1, + STATE(1038), 1, sym__declarator, - STATE(1110), 1, + STATE(1118), 1, sym__abstract_declarator, - STATE(1132), 1, + STATE(1140), 1, sym_parameter_list, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - ACTIONS(1740), 2, + ACTIONS(1744), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(828), 2, + STATE(836), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(832), 2, + STATE(838), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1742), 3, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -55109,12 +55758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1130), 4, + STATE(1138), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -55123,15 +55772,15 @@ static const uint16_t ts_small_parse_table[] = { [20272] = 5, ACTIONS(3), 1, sym_comment, - STATE(644), 2, + STATE(652), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1752), 4, + ACTIONS(1756), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1748), 7, + ACTIONS(1752), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -55139,7 +55788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1750), 19, + ACTIONS(1754), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -55159,385 +55808,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [20316] = 10, + [20316] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1602), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1600), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, + ACTIONS(1767), 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_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [20369] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1602), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, + ACTIONS(1773), 1, anon_sym_AMP, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 8, + ACTIONS(1610), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20436] = 17, + [20387] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - STATE(555), 1, + anon_sym_SLASH, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1588), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1600), 8, + ACTIONS(1582), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [20503] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20572] = 16, + [20442] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1602), 1, - anon_sym_PIPE, - ACTIONS(1757), 1, - anon_sym_SLASH, ACTIONS(1763), 1, - anon_sym_AMP, - STATE(555), 1, + anon_sym_SLASH, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 9, + ACTIONS(1588), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1582), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20637] = 15, + [20499] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - STATE(555), 1, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1602), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 9, + ACTIONS(1582), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20700] = 19, + [20568] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - STATE(555), 1, + anon_sym_SLASH, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1759), 2, + ACTIONS(1588), 6, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1582), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1652), 6, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20771] = 14, + [20621] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1602), 2, + ACTIONS(1588), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 11, + ACTIONS(1582), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -55549,133 +56090,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20832] = 12, + [20682] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - STATE(555), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_QMARK, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1771), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1602), 4, + ACTIONS(1678), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [20755] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1600), 13, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1582), 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, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20889] = 20, + [20818] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, + ACTIONS(1588), 1, + anon_sym_PIPE, ACTIONS(1763), 1, - anon_sym_AMP, + anon_sym_SLASH, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - STATE(555), 1, + anon_sym_AMP, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1572), 5, + ACTIONS(1582), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [20962] = 11, + anon_sym_QMARK, + [20883] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1602), 4, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1666), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1600), 15, + ACTIONS(1664), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -55685,16 +56281,14 @@ 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_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [21017] = 3, + [20940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 9, + ACTIONS(1787), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -55704,7 +56298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1781), 22, + ACTIONS(1785), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -55727,47 +56321,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21056] = 12, + [20979] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1588), 1, + anon_sym_PIPE, + ACTIONS(1763), 1, anon_sym_SLASH, - STATE(555), 1, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1658), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1656), 13, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1582), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [21046] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1582), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -55775,7 +56424,7 @@ static const uint16_t ts_small_parse_table[] = { [21113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 8, + ACTIONS(1791), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -55784,7 +56433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1785), 22, + ACTIONS(1789), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -55810,7 +56459,7 @@ static const uint16_t ts_small_parse_table[] = { [21151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 11, + ACTIONS(1793), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_const, @@ -55822,7 +56471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1791), 19, + ACTIONS(1795), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -55845,9 +56494,9 @@ static const uint16_t ts_small_parse_table[] = { [21189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, + ACTIONS(1799), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1793), 28, + ACTIONS(1797), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -55879,9 +56528,9 @@ static const uint16_t ts_small_parse_table[] = { [21226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1030), 1, + ACTIONS(1803), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1028), 28, + ACTIONS(1801), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -55913,9 +56562,9 @@ static const uint16_t ts_small_parse_table[] = { [21263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1807), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1797), 28, + ACTIONS(1805), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -55947,9 +56596,9 @@ static const uint16_t ts_small_parse_table[] = { [21300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 1, + ACTIONS(1811), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1801), 28, + ACTIONS(1809), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -55981,9 +56630,9 @@ static const uint16_t ts_small_parse_table[] = { [21337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, + ACTIONS(1815), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 28, + ACTIONS(1813), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56015,9 +56664,9 @@ static const uint16_t ts_small_parse_table[] = { [21374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1819), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 28, + ACTIONS(1817), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56049,62 +56698,62 @@ static const uint16_t ts_small_parse_table[] = { [21411] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1813), 1, + ACTIONS(1821), 1, anon_sym_COMMA, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_RBRACE, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - STATE(1204), 1, + STATE(1206), 1, aux_sym_initializer_list_repeat1, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, [21486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1827), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1817), 28, + ACTIONS(1825), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56136,7 +56785,7 @@ static const uint16_t ts_small_parse_table[] = { [21523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 7, + ACTIONS(1831), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56144,7 +56793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1160), 22, + ACTIONS(1829), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -56170,20 +56819,20 @@ static const uint16_t ts_small_parse_table[] = { [21560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(1795), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 28, - aux_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(1793), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56204,9 +56853,9 @@ static const uint16_t ts_small_parse_table[] = { [21597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1102), 1, + ACTIONS(1835), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1100), 28, + ACTIONS(1833), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56238,9 +56887,9 @@ static const uint16_t ts_small_parse_table[] = { [21634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 1, + ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1112), 28, + ACTIONS(1124), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56272,20 +56921,20 @@ static const uint16_t ts_small_parse_table[] = { [21671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1038), 1, + ACTIONS(1170), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1036), 28, - aux_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(1168), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56306,9 +56955,9 @@ static const uint16_t ts_small_parse_table[] = { [21708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1839), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1821), 28, + ACTIONS(1837), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56340,20 +56989,20 @@ static const uint16_t ts_small_parse_table[] = { [21745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 1, + ACTIONS(1152), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1120), 28, - aux_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(1150), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56371,12 +57020,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21782] = 3, + [21782] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_QMARK, + ACTIONS(1841), 1, + anon_sym_COMMA, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1843), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [21855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1825), 28, + ACTIONS(1845), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56405,12 +57106,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21819] = 3, + [21892] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_QMARK, + ACTIONS(1849), 1, + anon_sym_COMMA, + ACTIONS(1851), 1, + anon_sym_RPAREN, + STATE(573), 1, + sym_argument_list, + STATE(1209), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(1855), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1829), 28, + ACTIONS(1853), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56439,12 +57193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21856] = 3, + [22004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(1859), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 28, + ACTIONS(1857), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56473,65 +57227,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21893] = 22, + [22041] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1837), 1, + ACTIONS(1849), 1, anon_sym_COMMA, - ACTIONS(1839), 1, + ACTIONS(1861), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - STATE(1155), 1, + STATE(1163), 1, aux_sym_argument_list_repeat1, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [21968] = 3, + [22116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 28, + ACTIONS(1072), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56560,23 +57314,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22005] = 3, + [22153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1046), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1164), 22, + ACTIONS(1044), 28, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56594,12 +57348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22042] = 3, + [22190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1865), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1845), 28, + ACTIONS(1863), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56628,75 +57382,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22079] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(1849), 1, - anon_sym_COMMA, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1851), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [22152] = 3, + [22227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1869), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1789), 22, + ACTIONS(1867), 28, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56714,76 +57416,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22189] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(1837), 1, - anon_sym_COMMA, - ACTIONS(1853), 1, - anon_sym_RPAREN, - STATE(555), 1, - sym_argument_list, - STATE(1202), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, [22264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1110), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1855), 22, + ACTIONS(1108), 28, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56804,9 +57453,9 @@ static const uint16_t ts_small_parse_table[] = { [22301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(1106), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1859), 28, + ACTIONS(1104), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56838,9 +57487,9 @@ static const uint16_t ts_small_parse_table[] = { [22338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1082), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1863), 28, + ACTIONS(1080), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56872,3008 +57521,2520 @@ static const uint16_t ts_small_parse_table[] = { [22375] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(1849), 1, - anon_sym_COMMA, - ACTIONS(1867), 1, - anon_sym_RPAREN, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22447] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(1849), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_SEMI, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22519] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, ACTIONS(1871), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22591] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(1849), 1, - anon_sym_COMMA, - ACTIONS(1873), 1, - anon_sym_RPAREN, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22663] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(1849), 1, - anon_sym_COMMA, - ACTIONS(1875), 1, - anon_sym_RPAREN, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [22735] = 20, + [22447] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1877), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [22805] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1879), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [22875] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(1849), 1, - anon_sym_COMMA, - ACTIONS(1881), 1, - anon_sym_SEMI, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22947] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1883), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1885), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(697), 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, - [22995] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1887), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1889), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(638), 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, - [23043] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1891), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1873), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [23115] = 21, + [22519] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1893), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1875), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [23187] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1895), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1897), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(638), 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, - [23235] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(618), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1899), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1901), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(700), 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, - [23283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1442), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1444), 26, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [23319] = 20, + [22591] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - STATE(555), 1, + ACTIONS(1841), 1, + anon_sym_COMMA, + ACTIONS(1877), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [23389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1438), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1440), 26, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [23425] = 21, + [22663] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1905), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1879), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [23497] = 21, + [22735] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1907), 1, + ACTIONS(1881), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [23569] = 21, + [22807] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1909), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1883), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [23641] = 21, + [22879] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1911), 1, + ACTIONS(1885), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [23713] = 21, + [22951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1444), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1446), 26, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [22987] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1887), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(1889), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(706), 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, + [23035] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1891), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(1893), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(647), 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, + [23083] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1913), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1895), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [23785] = 21, + [23155] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1915), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1897), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [23857] = 21, + [23227] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1917), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1899), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [23929] = 21, + [23299] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1919), 1, + ACTIONS(1901), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24001] = 21, + [23371] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1921), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1903), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24073] = 21, + [23443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1448), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1450), 26, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [23479] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, - anon_sym_COMMA, - ACTIONS(1923), 1, - anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24145] = 20, + ACTIONS(1905), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [23549] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - STATE(555), 1, + ACTIONS(1841), 1, + anon_sym_COMMA, + ACTIONS(1907), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1925), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [24215] = 21, + [23621] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1927), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1909), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24287] = 21, + [23693] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1929), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1911), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24359] = 21, + [23765] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1931), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1913), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24431] = 20, + [23837] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - STATE(555), 1, + ACTIONS(1841), 1, + anon_sym_COMMA, + ACTIONS(1915), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [24501] = 21, + [23909] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1935), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1917), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24573] = 21, + [23981] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1937), 1, + ACTIONS(1919), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24645] = 21, + [24053] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1939), 1, + ACTIONS(1921), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24717] = 21, + [24125] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1941), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1923), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24789] = 21, + [24197] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, - anon_sym_COMMA, - ACTIONS(1943), 1, - anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24861] = 21, + ACTIONS(1925), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [24267] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1945), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1927), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24933] = 21, + [24339] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1947), 1, + ACTIONS(1929), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25005] = 21, + [24411] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1949), 1, + ACTIONS(1931), 1, anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25077] = 21, + [24483] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1951), 1, + ACTIONS(1933), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25149] = 21, + [24555] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1953), 1, + ACTIONS(1935), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25221] = 21, + [24627] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1955), 1, + ACTIONS(1937), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25293] = 21, + [24699] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1957), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1939), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25365] = 21, + [24771] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1959), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1941), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25437] = 21, + [24843] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1961), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1943), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25509] = 21, + [24915] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1963), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1945), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25581] = 21, + [24987] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_RPAREN, - STATE(555), 1, + ACTIONS(1947), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25653] = 21, + [25059] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1849), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - ACTIONS(1967), 1, + ACTIONS(1949), 1, anon_sym_RPAREN, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25725] = 3, + [25131] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1845), 25, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [25760] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1857), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - STATE(436), 1, - sym_string_literal, - ACTIONS(1969), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1855), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1951), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - 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, - [25799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1863), 26, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(43), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [25834] = 20, + ACTIONS(1953), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(647), 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, + [25179] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1971), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1841), 1, + anon_sym_COMMA, + ACTIONS(1955), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25903] = 20, + [25251] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1973), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1841), 1, + anon_sym_COMMA, + ACTIONS(1957), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25972] = 20, + [25323] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1959), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(1961), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(736), 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, + [25371] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1975), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(1841), 1, + anon_sym_COMMA, + ACTIONS(1963), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26041] = 20, + [25443] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(1977), 1, - anon_sym_COLON, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26110] = 20, + ACTIONS(1965), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [25513] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(2003), 1, - anon_sym_RBRACK, - ACTIONS(2005), 1, + ACTIONS(1783), 1, anon_sym_QMARK, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26179] = 20, + ACTIONS(1967), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25583] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 1, - anon_sym_RBRACK, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(2005), 1, + ACTIONS(1783), 1, anon_sym_QMARK, - STATE(555), 1, + ACTIONS(1841), 1, + anon_sym_COMMA, + ACTIONS(1969), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26248] = 20, + [25655] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2007), 1, - anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1759), 2, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25725] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1508), 1, + anon_sym_RBRACK, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, + anon_sym_SLASH, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_CARET, + ACTIONS(1987), 1, + anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_QMARK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26317] = 20, + [25794] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2009), 1, + ACTIONS(1999), 1, anon_sym_COLON, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1859), 26, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [26421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 26, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [26456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1845), 26, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [26491] = 3, + [25863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1074), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1841), 26, + anon_sym_RBRACE, + ACTIONS(1072), 25, aux_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, @@ -59897,160 +60058,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26526] = 20, + [25898] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2011), 1, - anon_sym_COLON, - STATE(555), 1, + ACTIONS(2001), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 26, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [26630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1100), 26, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [26665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1114), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1112), 26, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [26700] = 3, + [25967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1038), 1, + ACTIONS(1811), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1036), 26, + anon_sym_RBRACE, + ACTIONS(1809), 25, aux_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, @@ -60074,98 +60139,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26735] = 5, + [26002] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_LBRACK_LBRACK, - STATE(432), 1, - sym_string_literal, - ACTIONS(1969), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1855), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [26774] = 20, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_QMARK, + ACTIONS(2003), 1, + anon_sym_SEMI, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26071] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1554), 1, + ACTIONS(1556), 1, anon_sym_RBRACK, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, + ACTIONS(1981), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1983), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1985), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1987), 1, anon_sym_AMP, - ACTIONS(2005), 1, + ACTIONS(1997), 1, anon_sym_QMARK, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26843] = 3, + [26140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1030), 1, + ACTIONS(1839), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1028), 26, + anon_sym_RBRACE, + ACTIONS(1837), 25, aux_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, @@ -60189,47 +60269,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26878] = 3, + [26175] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1120), 26, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [26913] = 3, + ACTIONS(1544), 1, + anon_sym_RBRACK, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, + anon_sym_SLASH, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_CARET, + ACTIONS(1987), 1, + anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_QMARK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1973), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1993), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 2, + ACTIONS(1869), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1817), 25, + ACTIONS(1867), 26, aux_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, @@ -60253,15 +60350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26948] = 3, + [26279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 2, + ACTIONS(1827), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1809), 25, + ACTIONS(1825), 26, aux_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, @@ -60285,64 +60382,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26983] = 20, + [26314] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2013), 1, + ACTIONS(2005), 1, anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26383] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_QMARK, + ACTIONS(2007), 1, + anon_sym_COLON, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27052] = 3, + [26452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, + ACTIONS(1046), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1793), 26, + anon_sym_RBRACE, + ACTIONS(1044), 25, aux_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, @@ -60366,12 +60512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27087] = 3, + [26487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(1859), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1829), 26, + ACTIONS(1857), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -60398,83 +60544,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27122] = 20, + [26522] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1542), 1, + ACTIONS(1522), 1, anon_sym_RBRACK, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_CARET, ACTIONS(1987), 1, + anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_QMARK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1973), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1993), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26591] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(2005), 1, + ACTIONS(1783), 1, anon_sym_QMARK, - STATE(555), 1, + ACTIONS(2009), 1, + anon_sym_COLON, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26660] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, + anon_sym_SLASH, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_CARET, + ACTIONS(1987), 1, + anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_QMARK, + ACTIONS(2011), 1, + anon_sym_RBRACK, + STATE(573), 1, + sym_argument_list, ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27191] = 7, + [26729] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, - sym_identifier, - ACTIONS(2024), 1, - sym_primitive_type, - STATE(773), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2022), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2018), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1564), 1, anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_QMARK, + ACTIONS(2013), 1, + anon_sym_SEMI, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26798] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_QMARK, + ACTIONS(2015), 1, anon_sym_SEMI, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2020), 13, + ACTIONS(1845), 26, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -60483,13 +60812,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - [27234] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 2, + ACTIONS(1082), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1841), 25, + ACTIONS(1080), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60515,15 +60853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27269] = 3, + [26937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 2, + ACTIONS(1855), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1797), 25, + ACTIONS(1853), 26, aux_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, @@ -60547,12 +60885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27304] = 3, + [26972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1803), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1797), 26, + ACTIONS(1801), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -60579,61 +60917,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27339] = 20, + [27007] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1588), 1, + anon_sym_PIPE, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1977), 1, + anon_sym_SLASH, + ACTIONS(1987), 1, + anon_sym_AMP, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1973), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1993), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1582), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [27068] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1520), 1, + anon_sym_RBRACK, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, anon_sym_CARET, - ACTIONS(1763), 1, + ACTIONS(1987), 1, anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, + ACTIONS(1997), 1, + anon_sym_QMARK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1973), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1993), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27137] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(771), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2021), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2019), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2017), 15, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_primitive_type, + sym_identifier, + [27176] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2026), 1, + ACTIONS(2024), 1, anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27245] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1552), 1, + anon_sym_RBRACK, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, + anon_sym_SLASH, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_CARET, + ACTIONS(1987), 1, + anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_QMARK, + STATE(573), 1, + sym_argument_list, ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, + ACTIONS(1973), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1993), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27314] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_QMARK, + ACTIONS(2026), 1, + anon_sym_COLON, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27408] = 3, + [27383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1839), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1817), 26, + ACTIONS(1837), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -60660,17 +61224,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27443] = 5, + [27418] = 7, ACTIONS(3), 1, sym_comment, - STATE(773), 1, + ACTIONS(2028), 1, + sym_identifier, + ACTIONS(2037), 1, + sym_primitive_type, + STATE(771), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2032), 4, + ACTIONS(2035), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2030), 7, + ACTIONS(2031), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -60678,7 +61246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2028), 15, + ACTIONS(2033), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -60692,17 +61260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - sym_primitive_type, - sym_identifier, - [27482] = 3, + [27461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 2, + ACTIONS(1811), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1801), 25, + ACTIONS(1809), 26, aux_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, @@ -60726,162 +61292,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27517] = 20, + [27496] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(2035), 1, - anon_sym_SEMI, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27586] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2037), 1, + ACTIONS(2039), 1, anon_sym_COLON, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27655] = 20, + [27565] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2039), 1, + ACTIONS(2041), 1, anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27724] = 3, + [27634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 2, + ACTIONS(1819), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1793), 25, + ACTIONS(1817), 26, aux_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, @@ -60905,35 +61422,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27759] = 11, + [27669] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1602), 4, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1666), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1600), 11, + ACTIONS(1664), 9, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -60941,24 +61461,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [27810] = 5, + [27722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(1835), 2, anon_sym_LBRACK_LBRACK, - STATE(431), 1, - sym_string_literal, - ACTIONS(1969), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1855), 20, + anon_sym_RBRACE, + ACTIONS(1833), 25, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -60979,62 +61495,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27849] = 20, + [27757] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2043), 1, anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27918] = 3, + [27826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 2, + ACTIONS(1819), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1104), 25, + ACTIONS(1817), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -61060,61 +61576,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27953] = 20, + [27861] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, - anon_sym_RBRACK, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(2005), 1, + ACTIONS(1783), 1, anon_sym_QMARK, - STATE(555), 1, + ACTIONS(2045), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28022] = 3, + [27930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, + ACTIONS(1831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 26, + STATE(439), 1, + sym_string_literal, + ACTIONS(2047), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1829), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [27969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1865), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1863), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61141,56 +61691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28057] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - anon_sym_SLASH, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1979), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1981), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2001), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1602), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1600), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [28110] = 3, + [28004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 1, + ACTIONS(1847), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1801), 26, + anon_sym_RBRACE, + ACTIONS(1845), 25, aux_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, @@ -61214,107 +61723,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28145] = 20, + [28039] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(2049), 1, anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28214] = 14, + [28108] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, anon_sym_SLASH, - STATE(555), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1602), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1979), 2, + ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1997), 2, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [28271] = 3, + [28177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 2, + ACTIONS(1807), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1805), 25, + ACTIONS(1805), 26, aux_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, @@ -61338,128 +61853,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28306] = 20, + [28212] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2045), 1, - anon_sym_SEMI, - STATE(555), 1, + ACTIONS(2053), 1, + anon_sym_COLON, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28375] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1857), 1, - anon_sym_LBRACK_LBRACK, - STATE(433), 1, - sym_string_literal, - ACTIONS(1969), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1855), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [28414] = 3, + [28281] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1833), 25, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - 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, - [28449] = 3, + ACTIONS(1558), 1, + anon_sym_RBRACK, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, + anon_sym_SLASH, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_CARET, + ACTIONS(1987), 1, + anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_QMARK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1973), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1993), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 2, + ACTIONS(1865), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1829), 25, + ACTIONS(1863), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -61485,111 +61983,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28484] = 20, + [28385] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 1, - anon_sym_RBRACK, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, + ACTIONS(1981), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1983), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1985), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1987), 1, anon_sym_AMP, - ACTIONS(2005), 1, + ACTIONS(1997), 1, anon_sym_QMARK, - STATE(555), 1, + ACTIONS(2055), 1, + anon_sym_RBRACK, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28553] = 20, + [28454] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1538), 1, anon_sym_RBRACK, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, + ACTIONS(1981), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1983), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1985), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1987), 1, anon_sym_AMP, - ACTIONS(2005), 1, + ACTIONS(1997), 1, anon_sym_QMARK, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28622] = 3, + [28523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1102), 2, + ACTIONS(1110), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1100), 25, + ACTIONS(1108), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -61615,59 +62113,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28657] = 15, + [28558] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - STATE(555), 1, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_CARET, + ACTIONS(1987), 1, + anon_sym_AMP, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1602), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1979), 2, + ACTIONS(1610), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 5, + [28625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1807), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1805), 25, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [28660] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - anon_sym_RBRACK, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - [28716] = 3, + ACTIONS(2057), 1, + anon_sym_COLON, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1815), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1813), 25, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [28764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1821), 26, + anon_sym_RBRACE, + ACTIONS(1797), 25, aux_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, @@ -61691,201 +62306,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28751] = 16, + [28799] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1602), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, + anon_sym_SLASH, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1588), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(1687), 1, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1582), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [28848] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1993), 1, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_CARET, + ACTIONS(1987), 1, anon_sym_AMP, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 5, + ACTIONS(1582), 3, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [28812] = 17, + [28913] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1536), 1, + anon_sym_RBRACK, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1602), 1, - anon_sym_PIPE, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1991), 1, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1987), 1, anon_sym_AMP, - STATE(555), 1, + ACTIONS(1997), 1, + anon_sym_QMARK, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [28875] = 17, + [28982] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1989), 1, + ACTIONS(1983), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1985), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1987), 1, anon_sym_AMP, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 4, + ACTIONS(1582), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [28938] = 20, + [29045] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, - anon_sym_RBRACK, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1588), 1, + anon_sym_PIPE, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, ACTIONS(1985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, - anon_sym_AMP_AMP, - ACTIONS(1989), 1, - anon_sym_PIPE, - ACTIONS(1991), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1987), 1, anon_sym_AMP, - ACTIONS(2005), 1, - anon_sym_QMARK, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [29007] = 3, + ACTIONS(1582), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [29108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LBRACK_LBRACK, + STATE(442), 1, + sym_string_literal, + ACTIONS(2047), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1829), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [29147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 2, + ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1112), 25, + ACTIONS(1124), 26, aux_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, @@ -61909,157 +62599,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29042] = 20, + [29182] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(2047), 1, - anon_sym_COLON, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29111] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(2049), 1, - anon_sym_COLON, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1769), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29180] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - anon_sym_SLASH, - ACTIONS(1987), 1, - anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1588), 2, anon_sym_PIPE, - ACTIONS(1991), 1, - anon_sym_CARET, - ACTIONS(1993), 1, anon_sym_AMP, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1600), 3, + ACTIONS(1582), 5, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [29245] = 3, + [29241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1110), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1825), 26, + ACTIONS(1108), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62086,12 +62675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29280] = 3, + [29276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1106), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 26, + ACTIONS(1104), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62118,15 +62707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29315] = 3, + [29311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1074), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1036), 25, + ACTIONS(1072), 26, aux_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, @@ -62150,56 +62739,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29350] = 12, + [29346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - anon_sym_SLASH, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1979), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1981), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2001), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1658), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1656), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [29403] = 3, + ACTIONS(1869), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1867), 25, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [29381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1815), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1028), 25, + ACTIONS(1813), 26, aux_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, @@ -62223,242 +62803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29438] = 20, + [29416] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1550), 1, + ACTIONS(1516), 1, anon_sym_RBRACK, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, + ACTIONS(1981), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, - anon_sym_PIPE, - ACTIONS(1991), 1, - anon_sym_CARET, - ACTIONS(1993), 1, - anon_sym_AMP, - ACTIONS(2005), 1, - anon_sym_QMARK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1979), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1981), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1997), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1999), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2001), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29507] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, - anon_sym_LPAREN2, ACTIONS(1983), 1, - anon_sym_SLASH, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1981), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1602), 6, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1600), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [29556] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1506), 1, - anon_sym_RBRACK, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - anon_sym_SLASH, ACTIONS(1985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, - anon_sym_AMP_AMP, - ACTIONS(1989), 1, - anon_sym_PIPE, - ACTIONS(1991), 1, anon_sym_CARET, - ACTIONS(1993), 1, - anon_sym_AMP, - ACTIONS(2005), 1, - anon_sym_QMARK, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1979), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1981), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1997), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1999), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2001), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29625] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - anon_sym_SLASH, - ACTIONS(1985), 1, - anon_sym_PIPE_PIPE, ACTIONS(1987), 1, - anon_sym_AMP_AMP, - ACTIONS(1989), 1, - anon_sym_PIPE, - ACTIONS(1991), 1, - anon_sym_CARET, - ACTIONS(1993), 1, anon_sym_AMP, - ACTIONS(2005), 1, + ACTIONS(1997), 1, anon_sym_QMARK, - ACTIONS(2051), 1, - anon_sym_RBRACK, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1997), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1999), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2001), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29694] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1757), 1, - anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(2053), 1, - anon_sym_COLON, - STATE(555), 1, - sym_argument_list, - ACTIONS(1568), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1755), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1759), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [29763] = 3, + [29485] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1827), 2, @@ -62490,257 +62884,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29798] = 19, + [29520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1799), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1797), 26, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [29555] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1773), 1, anon_sym_AMP, - STATE(555), 1, + ACTIONS(1783), 1, + anon_sym_QMARK, + ACTIONS(2059), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1652), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(1979), 2, + ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [29865] = 20, + [29624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_RBRACK, - ACTIONS(1566), 1, - anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1835), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 26, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [29659] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1989), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1991), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1993), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(2005), 1, + ACTIONS(1783), 1, anon_sym_QMARK, - STATE(555), 1, + ACTIONS(2061), 1, + anon_sym_COLON, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [29934] = 20, + [29728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1803), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1801), 25, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [29763] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_SLASH, - ACTIONS(1761), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_QMARK, - ACTIONS(2055), 1, - anon_sym_COLON, - STATE(555), 1, + ACTIONS(2063), 1, + anon_sym_SEMI, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(1759), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30003] = 20, + [29832] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(2057), 1, - anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, + ACTIONS(1588), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1993), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, + ACTIONS(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30072] = 20, + ACTIONS(1582), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [29889] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LBRACK_LBRACK, + STATE(441), 1, + sym_string_literal, + ACTIONS(2047), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1829), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [29928] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1572), 1, - anon_sym_RBRACK, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1987), 1, - anon_sym_AMP_AMP, - ACTIONS(1989), 1, - anon_sym_PIPE, - ACTIONS(1991), 1, - anon_sym_CARET, - ACTIONS(1993), 1, - anon_sym_AMP, - ACTIONS(2005), 1, - anon_sym_QMARK, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1979), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 2, + ACTIONS(1975), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(1995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1997), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1588), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1999), 2, + ACTIONS(1582), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2001), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30141] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + [29981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 2, + ACTIONS(1126), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1821), 25, + ACTIONS(1124), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -62766,62 +63277,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30176] = 20, + [30016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1566), 1, + ACTIONS(1082), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1080), 26, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [30051] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1568), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, anon_sym_SLASH, - ACTIONS(1761), 1, - anon_sym_CARET, - ACTIONS(1763), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_PIPE, - ACTIONS(1775), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(2059), 1, - anon_sym_SEMI, - STATE(555), 1, + STATE(573), 1, sym_argument_list, - ACTIONS(1568), 2, + ACTIONS(1570), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1570), 2, + ACTIONS(1572), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1759), 2, + ACTIONS(1973), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1765), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1767), 2, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1588), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1769), 2, + ACTIONS(1582), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1771), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30245] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + [30102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LBRACK_LBRACK, + STATE(440), 1, + sym_string_literal, + ACTIONS(2047), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1829), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [30141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 2, + ACTIONS(1859), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1120), 25, + ACTIONS(1857), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -62847,13 +63415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30280] = 3, + [30176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 2, + ACTIONS(1106), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1859), 25, + ACTIONS(1104), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -62879,13 +63447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30315] = 3, + [30211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 2, + ACTIONS(1855), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1863), 25, + ACTIONS(1853), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -62911,28 +63479,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30350] = 15, + [30246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 1, + ACTIONS(1046), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1044), 26, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [30281] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1678), 1, + anon_sym_RBRACK, + ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1977), 1, + anon_sym_SLASH, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_CARET, + ACTIONS(1987), 1, + anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_QMARK, + STATE(573), 1, + sym_argument_list, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1572), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1973), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1975), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1993), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30350] = 15, + ACTIONS(3), 1, + sym_comment, ACTIONS(1190), 1, + anon_sym_LPAREN2, + ACTIONS(1192), 1, + anon_sym_STAR, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(1746), 1, + ACTIONS(1750), 1, anon_sym_LBRACK, - STATE(1025), 1, + STATE(1018), 1, sym__declarator, - STATE(1107), 1, + STATE(1115), 1, sym__abstract_declarator, - STATE(1132), 1, + STATE(1140), 1, sym_parameter_list, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - ACTIONS(2061), 2, + ACTIONS(2065), 2, anon_sym_COMMA, anon_sym_RPAREN, STATE(871), 2, @@ -62943,12 +63592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1130), 4, + STATE(1138), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -62957,30 +63606,30 @@ static const uint16_t ts_small_parse_table[] = { [30408] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(2067), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1055), 1, + STATE(1074), 1, sym__type_declarator, - STATE(1376), 1, + STATE(1384), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(981), 2, + STATE(983), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(985), 2, + STATE(994), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1742), 3, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -62989,7 +63638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1094), 5, + STATE(1104), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -62998,112 +63647,30 @@ static const uint16_t ts_small_parse_table[] = { [30463] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, - anon_sym_LPAREN2, - ACTIONS(2071), 1, - anon_sym_STAR, - STATE(995), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1025), 1, - sym__declarator, - STATE(1394), 1, - sym_ms_based_modifier, - ACTIONS(1744), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(834), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(978), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1742), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [30518] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, - anon_sym___based, ACTIONS(2073), 1, - sym_identifier, - ACTIONS(2075), 1, - anon_sym_LPAREN2, - ACTIONS(2077), 1, - anon_sym_STAR, - STATE(995), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1045), 1, - sym__field_declarator, - STATE(1323), 1, - sym_ms_based_modifier, - ACTIONS(1744), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(976), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(985), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(1742), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(1089), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [30573] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, - anon_sym___based, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1025), 1, + STATE(1018), 1, sym__declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(978), 2, + STATE(990), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(985), 2, + STATE(994), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1742), 3, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63112,39 +63679,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [30628] = 14, + [30518] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2081), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1041), 1, + STATE(1051), 1, sym__field_declarator, - STATE(1323), 1, + STATE(1330), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(837), 2, + STATE(842), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(979), 2, + STATE(989), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1742), 3, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63153,39 +63720,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1089), 5, + STATE(1090), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [30683] = 14, + [30573] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(2067), 1, sym_identifier, ACTIONS(2069), 1, anon_sym_LPAREN2, ACTIONS(2071), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1037), 1, - sym__declarator, - STATE(1394), 1, + STATE(1073), 1, + sym__type_declarator, + STATE(1384), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(977), 2, + STATE(987), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(985), 2, + STATE(994), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1742), 3, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63194,39 +63761,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [30738] = 14, + STATE(1104), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [30628] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(2067), 1, sym_identifier, ACTIONS(2069), 1, anon_sym_LPAREN2, ACTIONS(2071), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1013), 1, - sym__declarator, - STATE(1394), 1, + STATE(1075), 1, + sym__type_declarator, + STATE(1384), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(832), 2, + STATE(837), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(975), 2, + STATE(986), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1742), 3, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63235,39 +63802,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [30793] = 14, + STATE(1104), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [30683] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2081), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1049), 1, + STATE(1047), 1, sym__field_declarator, - STATE(1323), 1, + STATE(1330), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(831), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(980), 2, + STATE(991), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1742), 3, + STATE(994), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63276,39 +63843,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1089), 5, + STATE(1090), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [30848] = 14, + [30738] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2081), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1049), 1, + STATE(1057), 1, sym__field_declarator, - STATE(1323), 1, + STATE(1330), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(980), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(985), 2, + STATE(848), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1742), 3, + STATE(984), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63317,30 +63884,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1089), 5, + STATE(1090), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [30903] = 14, + [30793] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(2067), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1056), 1, + STATE(1074), 1, sym__type_declarator, - STATE(1376), 1, + STATE(1384), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(840), 2, @@ -63349,7 +63916,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(983), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1742), 3, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63358,39 +63925,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1094), 5, + STATE(1104), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, + [30848] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(2073), 1, + anon_sym_LPAREN2, + ACTIONS(2075), 1, + anon_sym_STAR, + STATE(1003), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1018), 1, + sym__declarator, + STATE(1402), 1, + sym_ms_based_modifier, + ACTIONS(1748), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(990), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1746), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [30903] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(2073), 1, + anon_sym_LPAREN2, + ACTIONS(2075), 1, + anon_sym_STAR, + STATE(1003), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1022), 1, + sym__declarator, + STATE(1402), 1, + sym_ms_based_modifier, + ACTIONS(1748), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(985), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(994), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1746), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, [30958] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1062), 1, - sym__type_declarator, - STATE(1376), 1, + STATE(1038), 1, + sym__declarator, + STATE(1402), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(829), 2, + STATE(838), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(982), 2, + STATE(988), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1742), 3, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63399,39 +64048,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1094), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, [31013] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2081), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1062), 1, - sym__type_declarator, - STATE(1376), 1, + STATE(1051), 1, + sym__field_declarator, + STATE(1330), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1748), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(982), 2, + STATE(989), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(985), 2, + STATE(994), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1742), 3, + ACTIONS(1746), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63440,12 +64089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1094), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1090), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, [31068] = 10, ACTIONS(3), 1, sym_comment, @@ -63453,14 +64102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2079), 1, + ACTIONS(2083), 1, anon_sym_SEMI, - ACTIONS(1899), 2, + ACTIONS(1887), 2, anon_sym___based, sym_identifier, - ACTIONS(1901), 2, + ACTIONS(1889), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(45), 4, @@ -63474,7 +64123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(700), 7, + STATE(706), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63489,14 +64138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2081), 1, + ACTIONS(2085), 1, anon_sym_SEMI, - ACTIONS(1899), 2, + ACTIONS(1887), 2, anon_sym___based, sym_identifier, - ACTIONS(1901), 2, + ACTIONS(1889), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(45), 4, @@ -63510,7 +64159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(700), 7, + STATE(706), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63525,14 +64174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2087), 1, anon_sym_SEMI, - ACTIONS(1899), 2, + ACTIONS(1887), 2, anon_sym___based, sym_identifier, - ACTIONS(1901), 2, + ACTIONS(1889), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(45), 4, @@ -63546,7 +64195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(700), 7, + STATE(706), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63561,14 +64210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(618), 1, + ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2089), 1, anon_sym_SEMI, - ACTIONS(1899), 2, + ACTIONS(1887), 2, anon_sym___based, sym_identifier, - ACTIONS(1901), 2, + ACTIONS(1889), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(45), 4, @@ -63582,7 +64231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(700), 7, + STATE(706), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63593,11 +64242,11 @@ static const uint16_t ts_small_parse_table[] = { [31252] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2095), 1, anon_sym_LBRACE, - STATE(880), 1, - sym_field_declaration_list, - ACTIONS(2089), 7, + STATE(872), 1, + sym_enumerator_list, + ACTIONS(2093), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63605,7 +64254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2087), 14, + ACTIONS(2091), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -63620,14 +64269,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31287] = 5, + [31287] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + 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(1198), 1, + sym_identifier, + STATE(997), 1, + sym__type_specifier, + STATE(999), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1362), 1, + sym_type_descriptor, + STATE(866), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1148), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(874), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [31338] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(879), 1, + STATE(878), 1, sym_field_declaration_list, - ACTIONS(2095), 7, + ACTIONS(2099), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63635,7 +64322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2093), 14, + ACTIONS(2097), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -63650,14 +64337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31322] = 5, + [31373] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(883), 1, - sym_enumerator_list, - ACTIONS(2099), 7, + STATE(884), 1, + sym_field_declaration_list, + ACTIONS(2105), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63665,7 +64352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2097), 14, + ACTIONS(2103), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -63680,52 +64367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31357] = 13, - ACTIONS(3), 1, - sym_comment, - 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(1194), 1, - sym_identifier, - STATE(984), 1, - sym__type_specifier, - STATE(991), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1354), 1, - sym_type_descriptor, - STATE(851), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1144), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, [31408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(877), 1, + STATE(880), 1, sym_field_declaration_list, - ACTIONS(2105), 7, + ACTIONS(2109), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63733,7 +64382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2103), 14, + ACTIONS(2107), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -63751,11 +64400,11 @@ static const uint16_t ts_small_parse_table[] = { [31443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(886), 1, + STATE(885), 1, sym_field_declaration_list, - ACTIONS(2109), 7, + ACTIONS(2113), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -63763,7 +64412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2107), 14, + ACTIONS(2111), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -63789,13 +64438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(989), 1, - sym__type_specifier, - STATE(991), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(871), 2, + STATE(1036), 1, + sym__type_specifier, + STATE(864), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -63803,18 +64452,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1144), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31526] = 12, + [31526] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2117), 1, + anon_sym_LPAREN2, + STATE(917), 1, + sym_preproc_argument_list, + ACTIONS(2119), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2115), 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, + [31560] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -63825,13 +64503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1035), 1, + STATE(1044), 1, sym__type_specifier, - STATE(853), 2, + STATE(871), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -63844,13 +64522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31574] = 12, + [31608] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -63861,11 +64539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1028), 1, + STATE(1035), 1, sym__type_specifier, STATE(871), 2, sym_type_qualifier, @@ -63880,13 +64558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31622] = 12, + [31656] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -63897,13 +64575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1011), 1, + STATE(1023), 1, sym__type_specifier, - STATE(858), 2, + STATE(871), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -63916,41 +64594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31670] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2113), 1, - anon_sym_LPAREN2, - STATE(900), 1, - sym_preproc_argument_list, - ACTIONS(2115), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2111), 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, [31704] = 12, ACTIONS(3), 1, sym_comment, @@ -63962,13 +64611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1032), 1, sym__type_specifier, - STATE(860), 2, + STATE(871), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -63981,7 +64630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63998,13 +64647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1020), 1, sym__type_specifier, - STATE(859), 2, + STATE(862), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64017,7 +64666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -64034,12 +64683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(767), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(998), 1, sym__type_specifier, + STATE(999), 1, + aux_sym_sized_type_specifier_repeat1, STATE(871), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, @@ -64048,12 +64697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, + ACTIONS(1148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -64070,13 +64719,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1014), 1, + STATE(1025), 1, sym__type_specifier, - STATE(871), 2, + STATE(863), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64089,7 +64738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(865), 5, + STATE(874), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -64106,13 +64755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1194), 1, + ACTIONS(1198), 1, sym_identifier, - STATE(767), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1023), 1, + STATE(1031), 1, sym__type_specifier, - STATE(871), 2, + STATE(861), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64121,73 +64770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(865), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - [31944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2119), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2117), 14, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [31973] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2121), 1, - anon_sym_LPAREN2, - ACTIONS(1249), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1236), 14, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [32004] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(874), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [31944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2126), 7, + ACTIONS(2123), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64195,7 +64791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2124), 14, + ACTIONS(2121), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64210,23 +64806,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32033] = 3, + [31973] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2128), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(2125), 1, + anon_sym_COMMA, + ACTIONS(2127), 1, + anon_sym_RPAREN, + ACTIONS(2133), 1, + anon_sym_SLASH, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2137), 1, + anon_sym_AMP_AMP, + ACTIONS(2139), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_AMP, + STATE(1154), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2131), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2145), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2149), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2151), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32028] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(871), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2153), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, + ACTIONS(1754), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(1752), 10, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -64236,10 +64873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32062] = 3, + [32061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 7, + ACTIONS(2158), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64247,7 +64884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2132), 14, + ACTIONS(2156), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64262,10 +64899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32091] = 3, + [32090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 7, + ACTIONS(2162), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64273,7 +64910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2136), 14, + ACTIONS(2160), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64288,10 +64925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32120] = 3, + [32119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2142), 7, + ACTIONS(2166), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64299,7 +64936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2140), 14, + ACTIONS(2164), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64314,82 +64951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32149] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2144), 1, - anon_sym_COMMA, - ACTIONS(2146), 1, - anon_sym_RPAREN, - ACTIONS(2152), 1, - anon_sym_SLASH, - ACTIONS(2154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2156), 1, - anon_sym_AMP_AMP, - ACTIONS(2158), 1, - anon_sym_PIPE, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2162), 1, - anon_sym_AMP, - STATE(1146), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2148), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2150), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2164), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2166), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2168), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32204] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2172), 1, - sym_identifier, - ACTIONS(2174), 1, - anon_sym_RPAREN, - ACTIONS(2176), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - anon_sym_defined, - ACTIONS(2184), 1, - sym_number_literal, - ACTIONS(2180), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2186), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(882), 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, - [32247] = 3, + [32148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 7, + ACTIONS(2170), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64397,7 +64962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2188), 14, + ACTIONS(2168), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64412,38 +64977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32276] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(871), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2192), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1750), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(1748), 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, - [32309] = 3, + [32177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 7, + ACTIONS(2174), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64451,7 +64988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2195), 14, + ACTIONS(2172), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64466,10 +65003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32338] = 3, + [32206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2201), 7, + ACTIONS(2178), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64477,7 +65014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2199), 14, + ACTIONS(2176), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64492,10 +65029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32367] = 3, + [32235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 7, + ACTIONS(2182), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64503,7 +65040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2203), 14, + ACTIONS(2180), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64518,10 +65055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32396] = 3, + [32264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 7, + ACTIONS(2186), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64529,7 +65066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2207), 14, + ACTIONS(2184), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64544,10 +65081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32425] = 3, + [32293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 7, + ACTIONS(2190), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64555,7 +65092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2211), 14, + ACTIONS(2188), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64570,10 +65107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32454] = 3, + [32322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 7, + ACTIONS(2194), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64581,7 +65118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2215), 14, + ACTIONS(2192), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64596,10 +65133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32483] = 3, + [32351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 7, + ACTIONS(2198), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64607,7 +65144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2219), 14, + ACTIONS(2196), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64622,10 +65159,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32512] = 3, + [32380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2202), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2200), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + 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, + [32409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2206), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64633,7 +65196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2223), 14, + ACTIONS(2204), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64648,10 +65211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32541] = 3, + [32438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2210), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64659,7 +65222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2227), 14, + ACTIONS(2208), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64674,10 +65237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32570] = 3, + [32467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 7, + ACTIONS(2214), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64685,7 +65248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2231), 14, + ACTIONS(2212), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64700,49 +65263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32599] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2144), 1, - anon_sym_COMMA, - ACTIONS(2152), 1, - anon_sym_SLASH, - ACTIONS(2154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2156), 1, - anon_sym_AMP_AMP, - ACTIONS(2158), 1, - anon_sym_PIPE, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2162), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_RPAREN, - STATE(1203), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2148), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2150), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2164), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2166), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2168), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32654] = 3, + [32496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 7, + ACTIONS(2218), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64750,7 +65274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2237), 14, + ACTIONS(2216), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64765,32 +65289,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32683] = 10, + [32525] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2222), 1, + anon_sym_RPAREN, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2241), 1, - anon_sym_RPAREN, - ACTIONS(2243), 1, + ACTIONS(2232), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(868), 7, + STATE(895), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -64798,16 +65322,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [32726] = 5, - ACTIONS(2111), 1, + [32568] = 5, + ACTIONS(2115), 1, anon_sym_LF, - ACTIONS(2245), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - STATE(964), 1, + STATE(958), 1, sym_preproc_argument_list, - ACTIONS(2115), 18, + ACTIONS(2119), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64826,10 +65350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [32759] = 3, + [32601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 7, + ACTIONS(2242), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64837,7 +65361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2249), 14, + ACTIONS(2240), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64852,10 +65376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32788] = 3, + [32630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2255), 7, + ACTIONS(2246), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64863,7 +65387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2253), 14, + ACTIONS(2244), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64878,10 +65402,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32817] = 3, + [32659] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2220), 1, + sym_identifier, + ACTIONS(2224), 1, + anon_sym_LPAREN2, + ACTIONS(2226), 1, + anon_sym_defined, + ACTIONS(2248), 1, + anon_sym_RPAREN, + ACTIONS(2250), 1, + sym_number_literal, + ACTIONS(2228), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2234), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(870), 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, + [32702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 7, + ACTIONS(2254), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64889,7 +65446,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2257), 14, + ACTIONS(2252), 14, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [32731] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(1253), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(1240), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64904,55 +65488,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32846] = 3, + [32762] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2263), 5, + ACTIONS(2125), 1, + anon_sym_COMMA, + ACTIONS(2133), 1, anon_sym_SLASH, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2137), 1, + anon_sym_AMP_AMP, + ACTIONS(2139), 1, anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2261), 15, - anon_sym_COMMA, + ACTIONS(2259), 1, anon_sym_RPAREN, + STATE(1210), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2131), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2145), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2149), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32874] = 9, + [32817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2263), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2261), 14, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, sym_identifier, - ACTIONS(2267), 1, + [32846] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2220), 1, + sym_identifier, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2275), 1, + ACTIONS(2265), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(945), 7, + STATE(951), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -64960,178 +65584,161 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [32914] = 9, + [32886] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2133), 1, anon_sym_SLASH, - ACTIONS(2148), 2, + ACTIONS(2143), 1, + anon_sym_AMP, + ACTIONS(2269), 1, + anon_sym_PIPE, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, + ACTIONS(2131), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2166), 2, + ACTIONS(2145), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2168), 2, + ACTIONS(2149), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2170), 2, + ACTIONS(2151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2281), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2279), 7, + ACTIONS(2267), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [32954] = 3, + [32930] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2283), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2271), 1, + sym_identifier, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + anon_sym_defined, + ACTIONS(2281), 1, + sym_number_literal, + ACTIONS(2277), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32982] = 7, + ACTIONS(2283), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(953), 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, + [32970] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_SLASH, - ACTIONS(2148), 2, + ACTIONS(2271), 1, + sym_identifier, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + anon_sym_defined, + ACTIONS(2285), 1, + sym_number_literal, + ACTIONS(2277), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2281), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2279), 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, - [33018] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1186), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_STAR, - ACTIONS(1190), 1, - anon_sym___based, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(1746), 1, - anon_sym_LBRACK, - STATE(1073), 1, - sym__declarator, - STATE(1103), 1, - sym__abstract_declarator, - STATE(1132), 1, - sym_parameter_list, - STATE(1394), 1, - sym_ms_based_modifier, - ACTIONS(2287), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1130), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [33066] = 6, + ACTIONS(2283), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(969), 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, + [33010] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2133), 1, anon_sym_SLASH, - ACTIONS(2148), 2, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2137), 1, + anon_sym_AMP_AMP, + ACTIONS(2139), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_AMP, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, + ACTIONS(2131), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2281), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2279), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2145), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2149), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33100] = 9, + ACTIONS(2287), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [33060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2275), 1, anon_sym_defined, ACTIONS(2289), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(974), 7, + STATE(967), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65139,30 +65746,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33140] = 9, + [33100] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2275), 1, anon_sym_defined, ACTIONS(2291), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(940), 7, + STATE(971), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65170,30 +65777,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33180] = 9, + [33140] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2275), 1, anon_sym_defined, ACTIONS(2293), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(943), 7, + STATE(970), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65201,30 +65808,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33220] = 9, + [33180] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2275), 1, anon_sym_defined, ACTIONS(2295), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(917), 7, + STATE(968), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65232,116 +65839,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2297), 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, - [33288] = 14, + [33220] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_SLASH, - ACTIONS(2154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2156), 1, - anon_sym_AMP_AMP, - ACTIONS(2158), 1, - anon_sym_PIPE, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2162), 1, - anon_sym_AMP, - ACTIONS(2148), 2, + ACTIONS(2271), 1, + sym_identifier, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + anon_sym_defined, + ACTIONS(2297), 1, + sym_number_literal, + ACTIONS(2277), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2164), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2166), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2168), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [33338] = 3, + ACTIONS(2283), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(962), 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, + [33260] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2303), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2271), 1, + sym_identifier, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + anon_sym_defined, + ACTIONS(2299), 1, + sym_number_literal, + ACTIONS(2277), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33366] = 9, + ACTIONS(2283), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(960), 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, + [33300] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2307), 1, + ACTIONS(2301), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(962), 7, + STATE(959), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65349,30 +65932,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33406] = 9, + [33340] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2309), 1, + ACTIONS(2303), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(952), 7, + STATE(977), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65380,55 +65963,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2313), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2311), 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, - [33474] = 9, + [33380] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2315), 1, + ACTIONS(2305), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(959), 7, + STATE(974), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65436,30 +65994,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33514] = 9, + [33420] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2317), 1, + ACTIONS(2307), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(938), 7, + STATE(979), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65467,80 +66025,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2319), 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, - [33582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1676), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1674), 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, - [33610] = 9, + [33460] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2323), 1, + ACTIONS(2309), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(891), 7, + STATE(955), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65548,30 +66056,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33650] = 9, + [33500] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2325), 1, + ACTIONS(2311), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(961), 7, + STATE(956), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65579,30 +66087,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33690] = 9, + [33540] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2327), 1, + ACTIONS(2313), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(893), 7, + STATE(980), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65610,30 +66118,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33730] = 9, + [33580] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2329), 1, + ACTIONS(2315), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(895), 7, + STATE(901), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65641,16 +66149,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33770] = 3, + [33620] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_SLASH, + ACTIONS(2129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2131), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2269), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2267), 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, + [33656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 5, + ACTIONS(2319), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2331), 15, + ACTIONS(2317), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -65666,30 +66203,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [33798] = 9, + [33684] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2335), 1, + ACTIONS(2321), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(934), 7, + STATE(982), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65697,30 +66234,80 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33838] = 9, + [33724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2325), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2323), 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, + [33752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2327), 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, + [33780] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2337), 1, + ACTIONS(2331), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(972), 7, + STATE(942), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65728,63 +66315,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33878] = 11, + [33820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(1650), 5, anon_sym_SLASH, - ACTIONS(2162), 1, - anon_sym_AMP, - ACTIONS(2281), 1, anon_sym_PIPE, - ACTIONS(2148), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1648), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2164), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2168), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [33922] = 9, + [33848] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2339), 1, + ACTIONS(2333), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(954), 7, + STATE(949), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65792,30 +66371,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33962] = 9, + [33888] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2341), 1, + ACTIONS(2335), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(970), 7, + STATE(952), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65823,30 +66402,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34002] = 9, + [33928] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2343), 1, + ACTIONS(2337), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(935), 7, + STATE(947), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65854,30 +66433,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34042] = 9, + [33968] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2345), 1, + ACTIONS(2339), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(901), 7, + STATE(961), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65885,30 +66464,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34082] = 9, + [34008] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2347), 1, + ACTIONS(2341), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(948), 7, + STATE(946), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65916,30 +66495,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34122] = 9, + [34048] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2349), 1, + ACTIONS(2343), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(947), 7, + STATE(945), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65947,30 +66526,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34162] = 9, + [34088] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2351), 1, + ACTIONS(2345), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(969), 7, + STATE(898), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65978,30 +66557,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34202] = 9, + [34128] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2353), 1, + ACTIONS(2347), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(946), 7, + STATE(954), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66009,30 +66588,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34242] = 9, + [34168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2351), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2349), 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, + [34196] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2355), 1, + ACTIONS(2353), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(944), 7, + STATE(920), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66040,30 +66644,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34282] = 9, + [34236] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2176), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2357), 1, + ACTIONS(2355), 1, sym_number_literal, - ACTIONS(2180), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(955), 7, + STATE(950), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66071,30 +66675,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34322] = 9, + [34276] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2359), 1, + ACTIONS(2357), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(965), 7, + STATE(963), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66102,16 +66706,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34362] = 3, + [34316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 5, + ACTIONS(2361), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2361), 15, + ACTIONS(2359), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66127,30 +66731,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34390] = 9, + [34344] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, - ACTIONS(2365), 1, + ACTIONS(2363), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(966), 7, + STATE(916), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66158,61 +66762,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34430] = 9, + [34384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, - sym_identifier, - ACTIONS(2267), 1, - anon_sym_LPAREN2, - ACTIONS(2269), 1, - anon_sym_defined, - ACTIONS(2367), 1, - sym_number_literal, - ACTIONS(2271), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2367), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2365), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(957), 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, - [34470] = 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, + [34412] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2224), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2226), 1, anon_sym_defined, ACTIONS(2369), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2228), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2230), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2234), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(967), 7, + STATE(948), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66220,55 +66818,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34510] = 9, + [34452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, - sym_identifier, - ACTIONS(2176), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - anon_sym_defined, - ACTIONS(2371), 1, - sym_number_literal, - ACTIONS(2180), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2373), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2371), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(908), 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, - [34550] = 5, + 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, + [34480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2377), 5, anon_sym_SLASH, - ACTIONS(2150), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2281), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2279), 13, + ACTIONS(2375), 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, @@ -66278,22 +66868,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34582] = 3, + [34508] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1190), 1, + anon_sym_LPAREN2, + ACTIONS(1192), 1, + anon_sym_STAR, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(1750), 1, + anon_sym_LBRACK, + STATE(1077), 1, + sym__declarator, + STATE(1119), 1, + sym__abstract_declarator, + STATE(1140), 1, + sym_parameter_list, + STATE(1402), 1, + sym_ms_based_modifier, + ACTIONS(2379), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1138), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [34556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 5, + ACTIONS(2133), 1, anon_sym_SLASH, + ACTIONS(2131), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2269), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2279), 15, + ACTIONS(2267), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -66303,30 +66930,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34610] = 9, + [34588] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2275), 1, anon_sym_defined, - ACTIONS(2373), 1, + ACTIONS(2381), 1, sym_number_literal, - ACTIONS(2271), 2, + ACTIONS(2277), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2279), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, + ACTIONS(2283), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(968), 7, + STATE(976), 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, + [34628] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2271), 1, + sym_identifier, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + anon_sym_defined, + ACTIONS(2383), 1, + sym_number_literal, + ACTIONS(2277), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2279), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2283), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(981), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66334,343 +66992,339 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34650] = 13, + [34668] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2133), 1, anon_sym_SLASH, - ACTIONS(2156), 1, - anon_sym_AMP_AMP, - ACTIONS(2158), 1, - anon_sym_PIPE, - ACTIONS(2160), 1, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2162), 1, + ACTIONS(2143), 1, anon_sym_AMP, - ACTIONS(2148), 2, + ACTIONS(2269), 1, + anon_sym_PIPE, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, + ACTIONS(2131), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2164), 2, + ACTIONS(2145), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 2, + ACTIONS(2147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2168), 2, + ACTIONS(2149), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2170), 2, + ACTIONS(2151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 3, + ACTIONS(2267), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [34698] = 10, + anon_sym_AMP_AMP, + [34714] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2133), 1, anon_sym_SLASH, - ACTIONS(2148), 2, + ACTIONS(2139), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_AMP, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, + ACTIONS(2131), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2164), 2, + ACTIONS(2145), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 2, + ACTIONS(2147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2168), 2, + ACTIONS(2149), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2170), 2, + ACTIONS(2151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2281), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2279), 5, + ACTIONS(2267), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [34740] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2265), 1, - sym_identifier, - ACTIONS(2267), 1, - anon_sym_LPAREN2, - ACTIONS(2269), 1, - anon_sym_defined, - ACTIONS(2375), 1, - sym_number_literal, - ACTIONS(2271), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2273), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2277), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(973), 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, - [34780] = 12, + [34760] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2133), 1, anon_sym_SLASH, - ACTIONS(2158), 1, + ACTIONS(2137), 1, + anon_sym_AMP_AMP, + ACTIONS(2139), 1, anon_sym_PIPE, - ACTIONS(2160), 1, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2162), 1, + ACTIONS(2143), 1, anon_sym_AMP, - ACTIONS(2148), 2, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, + ACTIONS(2131), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2164), 2, + ACTIONS(2145), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 2, + ACTIONS(2147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2168), 2, + ACTIONS(2149), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2170), 2, + ACTIONS(2151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 4, + ACTIONS(2267), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [34808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_SLASH, + ACTIONS(2129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2131), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2269), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2267), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [34826] = 9, + 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, + [34842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, - sym_identifier, - ACTIONS(2176), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - anon_sym_defined, - ACTIONS(2377), 1, - sym_number_literal, - ACTIONS(2180), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2182), 2, + ACTIONS(2269), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2267), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(937), 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, - [34866] = 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, + [34870] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 1, - sym_identifier, - ACTIONS(2267), 1, - anon_sym_LPAREN2, - ACTIONS(2269), 1, - anon_sym_defined, - ACTIONS(2379), 1, - sym_number_literal, - ACTIONS(2271), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2273), 2, + ACTIONS(2133), 1, + anon_sym_SLASH, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2277), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(951), 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, - [34906] = 12, + ACTIONS(2131), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2149), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2151), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2269), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2267), 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, + [34910] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2133), 1, anon_sym_SLASH, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2162), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_PIPE, - ACTIONS(2148), 2, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, + ACTIONS(2131), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2164), 2, + ACTIONS(2145), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 2, + ACTIONS(2147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2168), 2, + ACTIONS(2149), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2170), 2, + ACTIONS(2151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 4, + ACTIONS(2269), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2267), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [34952] = 11, - ACTIONS(2247), 1, + anon_sym_CARET, + [34952] = 12, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2279), 1, - anon_sym_LF, ACTIONS(2385), 1, + anon_sym_LF, + ACTIONS(2391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2393), 1, + anon_sym_AMP_AMP, + ACTIONS(2395), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2389), 1, + ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2281), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2381), 2, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [34995] = 12, - ACTIONS(2247), 1, + [34997] = 12, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2393), 1, + anon_sym_AMP_AMP, + ACTIONS(2395), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2389), 1, + ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2397), 1, + ACTIONS(2407), 1, anon_sym_LF, - ACTIONS(2399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2381), 2, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35040] = 12, - ACTIONS(2247), 1, + [35042] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2279), 1, - anon_sym_LF, - ACTIONS(2281), 1, + ACTIONS(2133), 1, + anon_sym_SLASH, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(2385), 1, + ACTIONS(2137), 1, + anon_sym_AMP_AMP, + ACTIONS(2139), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2389), 1, + ACTIONS(2143), 1, anon_sym_AMP, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2381), 2, + ACTIONS(2409), 1, + anon_sym_RPAREN, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2395), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2131), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2145), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2147), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2149), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [35085] = 3, - ACTIONS(2247), 1, + ACTIONS(2151), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35091] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2279), 1, + ACTIONS(2267), 1, anon_sym_LF, - ACTIONS(2281), 18, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2269), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -66684,37 +67338,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35112] = 4, - ACTIONS(2247), 1, + [35122] = 12, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2279), 1, - anon_sym_LF, - ACTIONS(2383), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2281), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2391), 1, anon_sym_PIPE_PIPE, + ACTIONS(2393), 1, anon_sym_AMP_AMP, + ACTIONS(2395), 1, anon_sym_PIPE, + ACTIONS(2397), 1, anon_sym_CARET, + ACTIONS(2399), 1, anon_sym_AMP, + ACTIONS(2411), 1, + anon_sym_LF, + ACTIONS(2387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2405), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2389), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35141] = 3, - ACTIONS(2247), 1, + [35167] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2361), 1, + ACTIONS(2323), 1, anon_sym_LF, - ACTIONS(2363), 18, + ACTIONS(2325), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66733,12 +67395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35168] = 3, - ACTIONS(2247), 1, + [35194] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2317), 1, anon_sym_LF, - ACTIONS(2263), 18, + ACTIONS(2319), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66757,173 +67419,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35195] = 12, - ACTIONS(2247), 1, + [35221] = 9, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_CARET, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2403), 1, + ACTIONS(2267), 1, anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2399), 1, + anon_sym_AMP, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2269), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35240] = 12, - ACTIONS(2247), 1, + [35260] = 10, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2267), 1, + anon_sym_LF, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2389), 1, - anon_sym_AMP, ACTIONS(2399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2405), 1, - anon_sym_LF, - ACTIONS(2381), 2, + anon_sym_AMP, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2269), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35285] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2410), 1, - anon_sym_LPAREN2, - ACTIONS(2414), 1, - anon_sym_LBRACK, - ACTIONS(1249), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(2407), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1236), 13, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [35318] = 12, - ACTIONS(2247), 1, + [35301] = 12, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2393), 1, + anon_sym_AMP_AMP, + ACTIONS(2395), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2389), 1, - anon_sym_AMP, ACTIONS(2399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, + anon_sym_AMP, + ACTIONS(2413), 1, anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35363] = 14, - ACTIONS(3), 1, + [35346] = 11, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_SLASH, - ACTIONS(2154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2156), 1, - anon_sym_AMP_AMP, - ACTIONS(2158), 1, + ACTIONS(2267), 1, + anon_sym_LF, + ACTIONS(2395), 1, anon_sym_PIPE, - ACTIONS(2160), 1, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2162), 1, + ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2419), 1, - anon_sym_RPAREN, - ACTIONS(2148), 2, + ACTIONS(2269), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2164), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 2, + ACTIONS(2405), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2389), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2403), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(2168), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35412] = 3, - ACTIONS(2247), 1, + anon_sym_LT, + [35389] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2311), 1, + ACTIONS(2327), 1, anon_sym_LF, - ACTIONS(2313), 18, + ACTIONS(2329), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66942,45 +67569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35439] = 12, - ACTIONS(2247), 1, - sym_comment, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_CARET, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2421), 1, + [35416] = 3, + ACTIONS(1648), 1, anon_sym_LF, - ACTIONS(2381), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2395), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2383), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2393), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [35484] = 3, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2331), 1, - anon_sym_LF, - ACTIONS(2333), 18, + ACTIONS(1650), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66999,12 +67593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35511] = 3, - ACTIONS(2247), 1, + [35443] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2319), 1, + ACTIONS(2349), 1, anon_sym_LF, - ACTIONS(2321), 18, + ACTIONS(2351), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67023,102 +67617,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35538] = 3, - ACTIONS(2247), 1, + [35470] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 1, - anon_sym_LF, - ACTIONS(2285), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2418), 1, + anon_sym_LPAREN2, + ACTIONS(2422), 1, + anon_sym_LBRACK, + ACTIONS(1253), 2, + anon_sym_COMMA, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2415), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1240), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [35503] = 12, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(2391), 1, anon_sym_PIPE_PIPE, + ACTIONS(2393), 1, anon_sym_AMP_AMP, + ACTIONS(2395), 1, anon_sym_PIPE, + ACTIONS(2397), 1, anon_sym_CARET, + ACTIONS(2399), 1, anon_sym_AMP, + ACTIONS(2425), 1, + anon_sym_LF, + ACTIONS(2387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2405), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2389), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35565] = 10, - ACTIONS(2247), 1, + [35548] = 12, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2279), 1, + ACTIONS(2267), 1, anon_sym_LF, - ACTIONS(2387), 1, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2393), 1, + anon_sym_AMP_AMP, + ACTIONS(2395), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2389), 1, + ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2381), 2, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2281), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35606] = 14, - ACTIONS(3), 1, + [35593] = 12, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_SLASH, - ACTIONS(2154), 1, + ACTIONS(2391), 1, anon_sym_PIPE_PIPE, - ACTIONS(2156), 1, + ACTIONS(2393), 1, anon_sym_AMP_AMP, - ACTIONS(2158), 1, + ACTIONS(2395), 1, anon_sym_PIPE, - ACTIONS(2160), 1, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2162), 1, + ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2423), 1, - anon_sym_RPAREN, - ACTIONS(2148), 2, + ACTIONS(2427), 1, + anon_sym_LF, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2150), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2164), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 2, + ACTIONS(2405), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2389), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2403), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(2168), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35655] = 3, - ACTIONS(2247), 1, + anon_sym_LT, + [35638] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2267), 1, anon_sym_LF, - ACTIONS(2305), 18, + ACTIONS(2269), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67137,17 +67767,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35682] = 3, - ACTIONS(2247), 1, + [35665] = 4, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2267), 1, anon_sym_LF, - ACTIONS(2299), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2269), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67161,86 +67792,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35709] = 9, - ACTIONS(2247), 1, + [35694] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2279), 1, + ACTIONS(2375), 1, anon_sym_LF, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2381), 2, + ACTIONS(2377), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2395), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2383), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2281), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2393), 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, - [35748] = 8, - ACTIONS(2247), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35721] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2279), 1, + ACTIONS(2371), 1, anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2373), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2395), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2383), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(2281), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [35785] = 7, - ACTIONS(2247), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35748] = 7, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2279), 1, + ACTIONS(2267), 1, anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2281), 7, + ACTIONS(2269), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67248,22 +67868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [35820] = 6, - ACTIONS(2247), 1, + [35783] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2279), 1, + ACTIONS(2359), 1, anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2361), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2395), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2383), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2281), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67275,78 +67890,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35853] = 12, - ACTIONS(2247), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35810] = 12, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2393), 1, + anon_sym_AMP_AMP, + ACTIONS(2395), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2389), 1, - anon_sym_AMP, ACTIONS(2399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2425), 1, + anon_sym_AMP, + ACTIONS(2429), 1, anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35898] = 12, - ACTIONS(2247), 1, + [35855] = 8, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_CARET, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2427), 1, + ACTIONS(2267), 1, anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35943] = 3, - ACTIONS(1674), 1, - anon_sym_LF, - ACTIONS(2247), 1, + ACTIONS(2269), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [35892] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(1676), 18, + ACTIONS(2365), 1, + anon_sym_LF, + ACTIONS(2367), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67365,94 +67978,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35970] = 12, - ACTIONS(2247), 1, + [35919] = 6, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_CARET, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2429), 1, + ACTIONS(2267), 1, anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2269), 11, + 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, - [36015] = 5, - ACTIONS(2247), 1, + [35952] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2279), 1, - anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2133), 1, + anon_sym_SLASH, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2137), 1, + anon_sym_AMP_AMP, + ACTIONS(2139), 1, + anon_sym_PIPE, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_AMP, + ACTIONS(2431), 1, + anon_sym_RPAREN, + ACTIONS(2129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2383), 3, + ACTIONS(2131), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2281), 13, + ACTIONS(2145), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2149), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2151), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36001] = 12, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(2391), 1, anon_sym_PIPE_PIPE, + ACTIONS(2393), 1, anon_sym_AMP_AMP, + ACTIONS(2395), 1, anon_sym_PIPE, + ACTIONS(2397), 1, anon_sym_CARET, + ACTIONS(2399), 1, anon_sym_AMP, + ACTIONS(2433), 1, + anon_sym_LF, + ACTIONS(2387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2405), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2389), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, [36046] = 12, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2393), 1, + anon_sym_AMP_AMP, + ACTIONS(2395), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2389), 1, - anon_sym_AMP, ACTIONS(2399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_AMP_AMP, - ACTIONS(2431), 1, + anon_sym_AMP, + ACTIONS(2435), 1, anon_sym_LF, - ACTIONS(2381), 2, + ACTIONS(2387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2391), 2, + ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2395), 2, + ACTIONS(2405), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2383), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2393), 4, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -67460,17 +68109,17 @@ static const uint16_t ts_small_parse_table[] = { [36091] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(2067), 1, sym_identifier, ACTIONS(2069), 1, anon_sym_LPAREN2, ACTIONS(2071), 1, anon_sym_STAR, - STATE(1025), 1, - sym__declarator, - STATE(1394), 1, + STATE(1073), 1, + sym__type_declarator, + STATE(1384), 1, sym_ms_based_modifier, STATE(871), 2, sym_type_qualifier, @@ -67480,26 +68129,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1104), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, [36130] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2081), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(1051), 1, sym__field_declarator, - STATE(1323), 1, + STATE(1330), 1, sym_ms_based_modifier, STATE(871), 2, sym_type_qualifier, @@ -67509,7 +68158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1089), 5, + STATE(1090), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -67518,17 +68167,17 @@ static const uint16_t ts_small_parse_table[] = { [36169] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1029), 1, + STATE(1043), 1, sym__declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, STATE(871), 2, sym_type_qualifier, @@ -67538,7 +68187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -67547,17 +68196,17 @@ static const uint16_t ts_small_parse_table[] = { [36208] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(2067), 1, sym_identifier, ACTIONS(2069), 1, anon_sym_LPAREN2, ACTIONS(2071), 1, anon_sym_STAR, - STATE(1037), 1, - sym__declarator, - STATE(1394), 1, + STATE(1074), 1, + sym__type_declarator, + STATE(1384), 1, sym_ms_based_modifier, STATE(871), 2, sym_type_qualifier, @@ -67567,26 +68216,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1104), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, [36247] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2067), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(1049), 1, - sym__field_declarator, - STATE(1323), 1, + STATE(1062), 1, + sym__type_declarator, + STATE(1384), 1, sym_ms_based_modifier, STATE(871), 2, sym_type_qualifier, @@ -67596,26 +68245,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1089), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1104), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, [36286] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, + ACTIONS(2075), 1, + anon_sym_STAR, + STATE(1018), 1, + sym__declarator, + STATE(1402), 1, + sym_ms_based_modifier, + STATE(871), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36325] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 1, + anon_sym___based, ACTIONS(2077), 1, + sym_identifier, + ACTIONS(2079), 1, + anon_sym_LPAREN2, + ACTIONS(2081), 1, anon_sym_STAR, - STATE(1045), 1, + STATE(1047), 1, sym__field_declarator, - STATE(1323), 1, + STATE(1330), 1, sym_ms_based_modifier, STATE(871), 2, sym_type_qualifier, @@ -67625,26 +68303,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1089), 5, + STATE(1090), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36325] = 10, + [36364] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1065), 1, - sym__type_declarator, - STATE(1376), 1, + STATE(1022), 1, + sym__declarator, + STATE(1402), 1, sym_ms_based_modifier, STATE(871), 2, sym_type_qualifier, @@ -67654,26 +68332,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1094), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [36364] = 10, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36403] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2081), 1, anon_sym_STAR, - STATE(1055), 1, - sym__type_declarator, - STATE(1376), 1, + STATE(1053), 1, + sym__field_declarator, + STATE(1330), 1, sym_ms_based_modifier, STATE(871), 2, sym_type_qualifier, @@ -67683,146 +68361,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1094), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [36403] = 10, + STATE(1090), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [36442] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, - anon_sym___based, - ACTIONS(2063), 1, - sym_identifier, - ACTIONS(2065), 1, + ACTIONS(1432), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(1434), 1, anon_sym_STAR, - STATE(1062), 1, - sym__type_declarator, - STATE(1376), 1, - sym_ms_based_modifier, - STATE(871), 2, + ACTIONS(1744), 1, + anon_sym_RPAREN, + ACTIONS(1750), 1, + anon_sym_LBRACK, + STATE(1118), 1, + sym__abstract_declarator, + STATE(1140), 1, + sym_parameter_list, + STATE(995), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(2437), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1094), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [36442] = 10, + STATE(1138), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [36480] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1432), 1, anon_sym_LPAREN2, - ACTIONS(1430), 1, + ACTIONS(1434), 1, anon_sym_STAR, - ACTIONS(1746), 1, + ACTIONS(1750), 1, anon_sym_LBRACK, - ACTIONS(2433), 1, + ACTIONS(2439), 1, anon_sym_RPAREN, - STATE(1124), 1, + STATE(1133), 1, sym__abstract_declarator, - STATE(1132), 1, + STATE(1140), 1, sym_parameter_list, - STATE(988), 2, + STATE(871), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2437), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1130), 4, + STATE(1138), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36480] = 7, + [36518] = 7, ACTIONS(3), 1, sym_comment, - STATE(995), 1, + STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(2439), 2, + ACTIONS(2443), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2444), 2, + ACTIONS(2448), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(985), 2, + STATE(994), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2441), 3, + ACTIONS(2445), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2437), 6, + ACTIONS(2441), 6, anon_sym___based, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36512] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_LPAREN2, - ACTIONS(1430), 1, - anon_sym_STAR, - ACTIONS(1746), 1, - anon_sym_LBRACK, - ACTIONS(2061), 1, - anon_sym_RPAREN, - STATE(1107), 1, - sym__abstract_declarator, - STATE(1132), 1, - sym_parameter_list, - STATE(871), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(1130), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, [36550] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1432), 1, anon_sym_LPAREN2, - ACTIONS(1430), 1, + ACTIONS(1434), 1, anon_sym_STAR, - ACTIONS(1746), 1, + ACTIONS(1750), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2065), 1, anon_sym_RPAREN, - STATE(1112), 1, + STATE(1115), 1, sym__abstract_declarator, - STATE(1132), 1, + STATE(1140), 1, sym_parameter_list, STATE(871), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2437), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1130), 4, + STATE(1138), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -67830,27 +68479,27 @@ static const uint16_t ts_small_parse_table[] = { [36588] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1432), 1, anon_sym_LPAREN2, - ACTIONS(1430), 1, + ACTIONS(1434), 1, anon_sym_STAR, - ACTIONS(1746), 1, + ACTIONS(1750), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2451), 1, anon_sym_RPAREN, - STATE(1123), 1, + STATE(1120), 1, sym__abstract_declarator, - STATE(1132), 1, + STATE(1140), 1, sym_parameter_list, STATE(871), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2437), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1130), 4, + STATE(1138), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -67858,27 +68507,27 @@ static const uint16_t ts_small_parse_table[] = { [36626] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1432), 1, anon_sym_LPAREN2, - ACTIONS(1430), 1, + ACTIONS(1434), 1, anon_sym_STAR, - ACTIONS(1746), 1, + ACTIONS(1750), 1, anon_sym_LBRACK, - ACTIONS(2451), 1, + ACTIONS(2453), 1, anon_sym_RPAREN, - STATE(1122), 1, - sym__abstract_declarator, STATE(1132), 1, + sym__abstract_declarator, + STATE(1140), 1, sym_parameter_list, - STATE(987), 2, + STATE(993), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2437), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1130), 4, + STATE(1138), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -67886,27 +68535,27 @@ static const uint16_t ts_small_parse_table[] = { [36664] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1432), 1, anon_sym_LPAREN2, - ACTIONS(1430), 1, + ACTIONS(1434), 1, anon_sym_STAR, - ACTIONS(1740), 1, - anon_sym_RPAREN, - ACTIONS(1746), 1, + ACTIONS(1750), 1, anon_sym_LBRACK, - STATE(1110), 1, + ACTIONS(2455), 1, + anon_sym_RPAREN, + STATE(1131), 1, sym__abstract_declarator, - STATE(1132), 1, + STATE(1140), 1, sym_parameter_list, - STATE(986), 2, + STATE(996), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2437), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1130), 4, + STATE(1138), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -67914,23 +68563,23 @@ static const uint16_t ts_small_parse_table[] = { [36702] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2024), 1, + ACTIONS(2037), 1, sym_primitive_type, - ACTIONS(2453), 1, + ACTIONS(2457), 1, sym_identifier, - STATE(773), 1, + STATE(771), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2018), 4, + ACTIONS(2031), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2020), 4, + ACTIONS(2033), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(2022), 4, + ACTIONS(2035), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -67938,25 +68587,25 @@ static const uint16_t ts_small_parse_table[] = { [36733] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2081), 1, anon_sym_STAR, - ACTIONS(2455), 1, + ACTIONS(2459), 1, anon_sym_SEMI, - ACTIONS(2457), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(1027), 1, + STATE(1019), 1, sym__field_declarator, - STATE(1323), 1, - sym_ms_based_modifier, - STATE(1336), 1, + STATE(1327), 1, sym_bitfield_clause, - STATE(1089), 5, + STATE(1330), 1, + sym_ms_based_modifier, + STATE(1090), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -67965,25 +68614,25 @@ static const uint16_t ts_small_parse_table[] = { [36771] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2081), 1, anon_sym_STAR, - ACTIONS(2457), 1, + ACTIONS(2461), 1, anon_sym_COLON, - ACTIONS(2459), 1, + ACTIONS(2463), 1, anon_sym_SEMI, - STATE(1018), 1, + STATE(1037), 1, sym__field_declarator, - STATE(1323), 1, + STATE(1330), 1, sym_ms_based_modifier, - STATE(1437), 1, + STATE(1344), 1, sym_bitfield_clause, - STATE(1089), 5, + STATE(1090), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -67992,25 +68641,25 @@ static const uint16_t ts_small_parse_table[] = { [36809] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2081), 1, anon_sym_STAR, - ACTIONS(2457), 1, - anon_sym_COLON, ACTIONS(2461), 1, + anon_sym_COLON, + ACTIONS(2465), 1, anon_sym_SEMI, - STATE(1031), 1, + STATE(1027), 1, sym__field_declarator, - STATE(1319), 1, - sym_bitfield_clause, - STATE(1323), 1, + STATE(1330), 1, sym_ms_based_modifier, - STATE(1089), 5, + STATE(1445), 1, + sym_bitfield_clause, + STATE(1090), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -68019,10 +68668,10 @@ static const uint16_t ts_small_parse_table[] = { [36847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 2, + ACTIONS(2469), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2463), 11, + ACTIONS(2467), 11, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -68037,10 +68686,10 @@ static const uint16_t ts_small_parse_table[] = { [36868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 2, + ACTIONS(2473), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2467), 11, + ACTIONS(2471), 11, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -68052,558 +68701,563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36889] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, - anon_sym___based, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2069), 1, - anon_sym_LPAREN2, - ACTIONS(2071), 1, - anon_sym_STAR, - STATE(999), 1, - sym__declarator, - STATE(1167), 1, - sym_init_declarator, - STATE(1394), 1, - sym_ms_based_modifier, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [36921] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, - anon_sym___based, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2069), 1, - anon_sym_LPAREN2, - ACTIONS(2071), 1, - anon_sym_STAR, - STATE(1042), 1, - sym__declarator, - STATE(1199), 1, - sym_init_declarator, - STATE(1394), 1, - sym_ms_based_modifier, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [36953] = 12, + [36889] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(115), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2475), 1, + ACTIONS(2479), 1, anon_sym_SEMI, - ACTIONS(2477), 1, + ACTIONS(2481), 1, anon_sym_LBRACK, - ACTIONS(2479), 1, + ACTIONS(2483), 1, anon_sym_EQ, - STATE(124), 1, + STATE(298), 1, sym_compound_statement, - STATE(1030), 1, + STATE(1039), 1, sym_parameter_list, - STATE(1173), 1, + STATE(1183), 1, aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [36991] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, - anon_sym___based, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2069), 1, - anon_sym_LPAREN2, - ACTIONS(2071), 1, - anon_sym_STAR, - STATE(1005), 1, - sym__declarator, - STATE(1197), 1, - sym_init_declarator, - STATE(1394), 1, - sym_ms_based_modifier, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [37023] = 12, + [36927] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(428), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2473), 1, - anon_sym_LPAREN2, ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, anon_sym_LBRACK, - ACTIONS(2479), 1, + ACTIONS(2483), 1, anon_sym_EQ, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_SEMI, - STATE(244), 1, + STATE(261), 1, sym_compound_statement, - STATE(1030), 1, + STATE(1039), 1, sym_parameter_list, - STATE(1177), 1, + STATE(1204), 1, aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37061] = 9, + [36965] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1038), 1, + STATE(1059), 1, sym__declarator, - STATE(1167), 1, + STATE(1232), 1, sym_init_declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37093] = 12, + [36997] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(384), 1, + ACTIONS(115), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2473), 1, - anon_sym_LPAREN2, ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, anon_sym_LBRACK, - ACTIONS(2479), 1, - anon_sym_EQ, ACTIONS(2483), 1, + anon_sym_EQ, + ACTIONS(2487), 1, anon_sym_SEMI, - STATE(239), 1, + STATE(113), 1, sym_compound_statement, - STATE(1030), 1, + STATE(1039), 1, sym_parameter_list, - STATE(1170), 1, + STATE(1180), 1, aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37131] = 9, + [37035] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1039), 1, + STATE(1015), 1, sym__declarator, - STATE(1197), 1, + STATE(1184), 1, sym_init_declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37163] = 12, + [37067] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_COMMA, - ACTIONS(2473), 1, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2477), 1, - anon_sym_LBRACK, - ACTIONS(2479), 1, - anon_sym_EQ, - ACTIONS(2485), 1, - anon_sym_SEMI, - STATE(260), 1, - sym_compound_statement, - STATE(1030), 1, - sym_parameter_list, - STATE(1198), 1, - aux_sym_declaration_repeat1, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [37201] = 9, + ACTIONS(2075), 1, + anon_sym_STAR, + STATE(1055), 1, + sym__declarator, + STATE(1174), 1, + sym_init_declarator, + STATE(1402), 1, + sym_ms_based_modifier, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37099] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(1005), 1, sym__declarator, - STATE(1180), 1, + STATE(1212), 1, sym_init_declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37233] = 9, + [37131] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, STATE(1054), 1, sym__declarator, - STATE(1223), 1, + STATE(1207), 1, sym_init_declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37265] = 9, + [37163] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1001), 1, + STATE(1048), 1, sym__declarator, - STATE(1199), 1, + STATE(1212), 1, sym_init_declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37297] = 9, + [37195] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1040), 1, + STATE(1006), 1, sym__declarator, - STATE(1180), 1, + STATE(1207), 1, sym_init_declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37329] = 5, + [37227] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2489), 1, - anon_sym___attribute__, - ACTIONS(2492), 1, - anon_sym_LBRACK, - STATE(1010), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2487), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(373), 1, anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_COMMA, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, + anon_sym_LBRACK, + ACTIONS(2483), 1, anon_sym_EQ, - [37352] = 8, + ACTIONS(2489), 1, + anon_sym_SEMI, + STATE(271), 1, + sym_compound_statement, + STATE(1039), 1, + sym_parameter_list, + STATE(1177), 1, + aux_sym_declaration_repeat1, + STATE(1052), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [37265] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1058), 1, - sym__type_declarator, - STATE(1376), 1, + STATE(1008), 1, + sym__declarator, + STATE(1174), 1, + sym_init_declarator, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1094), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37381] = 8, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37297] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1074), 1, + STATE(1056), 1, sym__declarator, - STATE(1394), 1, + STATE(1184), 1, + sym_init_declarator, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37410] = 7, + [37329] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, anon_sym_LBRACK, - STATE(1030), 1, + STATE(1039), 1, sym_parameter_list, - STATE(1044), 2, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2494), 5, + ACTIONS(2491), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [37437] = 8, + [37356] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2461), 1, + anon_sym_COLON, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2493), 1, + anon_sym_COMMA, + ACTIONS(2495), 1, + anon_sym_SEMI, + ACTIONS(2497), 1, + anon_sym_LBRACK, + STATE(1100), 1, + sym_parameter_list, + STATE(1112), 1, + aux_sym_field_declaration_repeat1, + STATE(1280), 1, + sym_bitfield_clause, + STATE(1064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [37391] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(2067), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(1067), 1, + STATE(1070), 1, sym__type_declarator, - STATE(1376), 1, + STATE(1384), 1, sym_ms_based_modifier, - STATE(1094), 5, + STATE(1104), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37466] = 8, + [37420] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2079), 1, + anon_sym_LPAREN2, + ACTIONS(2081), 1, + anon_sym_STAR, + STATE(1071), 1, + sym__field_declarator, + STATE(1330), 1, + sym_ms_based_modifier, + STATE(1090), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [37449] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, + anon_sym_LBRACK, + STATE(1039), 1, + sym_parameter_list, + STATE(1052), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2499), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [37476] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(1050), 1, + STATE(1060), 1, sym__type_declarator, - STATE(1376), 1, + STATE(1384), 1, sym_ms_based_modifier, - STATE(1094), 5, + STATE(1104), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37495] = 8, + [37505] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1086), 1, sym__declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37524] = 8, + [37534] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(2067), 1, sym_identifier, ACTIONS(2069), 1, anon_sym_LPAREN2, ACTIONS(2071), 1, anon_sym_STAR, - STATE(1079), 1, + STATE(1063), 1, + sym__type_declarator, + STATE(1384), 1, + sym_ms_based_modifier, + STATE(1104), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [37563] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(2073), 1, + anon_sym_LPAREN2, + ACTIONS(2075), 1, + anon_sym_STAR, + STATE(1092), 1, sym__declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37553] = 11, + [37592] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2457), 1, + ACTIONS(2461), 1, anon_sym_COLON, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2496), 1, + ACTIONS(2493), 1, anon_sym_COMMA, - ACTIONS(2498), 1, - anon_sym_SEMI, - ACTIONS(2500), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(1083), 1, + ACTIONS(2501), 1, + anon_sym_SEMI, + STATE(1100), 1, sym_parameter_list, STATE(1111), 1, aux_sym_field_declaration_repeat1, - STATE(1439), 1, + STATE(1447), 1, sym_bitfield_clause, - STATE(1060), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37588] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, - anon_sym___based, - ACTIONS(2063), 1, - sym_identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN2, - ACTIONS(2067), 1, - anon_sym_STAR, - STATE(1053), 1, - sym__type_declarator, - STATE(1376), 1, - sym_ms_based_modifier, - STATE(1094), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37617] = 8, + [37627] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1088), 1, - sym__type_declarator, - STATE(1376), 1, + STATE(1087), 1, + sym__declarator, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1094), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37646] = 5, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2505), 1, anon_sym___attribute__, - ACTIONS(2506), 1, + ACTIONS(2508), 1, anon_sym_LBRACK, - STATE(1010), 2, + STATE(1029), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2502), 7, + ACTIONS(2503), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -68611,186 +69265,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37669] = 8, + [37679] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2067), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(1092), 1, - sym__field_declarator, - STATE(1323), 1, + STATE(1098), 1, + sym__type_declarator, + STATE(1384), 1, sym_ms_based_modifier, - STATE(1089), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [37698] = 8, + STATE(1104), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [37708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(2067), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1066), 1, sym__type_declarator, - STATE(1376), 1, + STATE(1384), 1, sym_ms_based_modifier, - STATE(1094), 5, + STATE(1104), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37727] = 8, + [37737] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2073), 1, + ACTIONS(2067), 1, sym_identifier, - ACTIONS(2075), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2077), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(1059), 1, - sym__field_declarator, - STATE(1323), 1, + STATE(1065), 1, + sym__type_declarator, + STATE(1384), 1, sym_ms_based_modifier, - STATE(1089), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [37756] = 7, + STATE(1104), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [37766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2477), 1, + ACTIONS(2512), 1, + anon_sym___attribute__, + ACTIONS(2514), 1, anon_sym_LBRACK, - STATE(1030), 1, - sym_parameter_list, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2508), 5, + STATE(1029), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2510), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37783] = 8, + [37789] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_STAR, - STATE(1076), 1, + STATE(1084), 1, sym__declarator, - STATE(1394), 1, + STATE(1402), 1, sym_ms_based_modifier, - STATE(1072), 5, + STATE(1081), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37812] = 11, + [37818] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2457), 1, - anon_sym_COLON, - ACTIONS(2473), 1, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2496), 1, - anon_sym_COMMA, - ACTIONS(2500), 1, - anon_sym_LBRACK, - ACTIONS(2510), 1, - anon_sym_SEMI, - STATE(1083), 1, - sym_parameter_list, - STATE(1104), 1, - aux_sym_field_declaration_repeat1, - STATE(1326), 1, - sym_bitfield_clause, - STATE(1060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, + ACTIONS(2071), 1, + anon_sym_STAR, + STATE(1072), 1, + sym__type_declarator, + STATE(1384), 1, + sym_ms_based_modifier, + STATE(1104), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, [37847] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(2067), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(1063), 1, + STATE(1058), 1, sym__type_declarator, - STATE(1376), 1, + STATE(1384), 1, sym_ms_based_modifier, - STATE(1094), 5, + STATE(1104), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37876] = 7, + [37876] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2461), 1, + anon_sym_COLON, + ACTIONS(2477), 1, anon_sym_LPAREN2, + ACTIONS(2493), 1, + anon_sym_COMMA, + ACTIONS(2497), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + anon_sym_SEMI, + STATE(1100), 1, + sym_parameter_list, + STATE(1113), 1, + aux_sym_field_declaration_repeat1, + STATE(1334), 1, + sym_bitfield_clause, + STATE(1064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [37911] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, anon_sym_LBRACK, - STATE(1030), 1, + STATE(1039), 1, sym_parameter_list, - STATE(1044), 2, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2512), 5, + ACTIONS(2518), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [37903] = 5, + [37938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2512), 1, anon_sym___attribute__, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_LBRACK, - STATE(1021), 2, + STATE(1033), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2514), 7, + ACTIONS(2520), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -68798,265 +69471,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37926] = 11, + [37961] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2457), 1, - anon_sym_COLON, - ACTIONS(2473), 1, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(2073), 1, anon_sym_LPAREN2, - ACTIONS(2496), 1, - anon_sym_COMMA, - ACTIONS(2500), 1, - anon_sym_LBRACK, - ACTIONS(2518), 1, - anon_sym_SEMI, - STATE(1083), 1, - sym_parameter_list, - STATE(1106), 1, - aux_sym_field_declaration_repeat1, - STATE(1274), 1, - sym_bitfield_clause, - STATE(1060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [37961] = 8, + ACTIONS(2075), 1, + anon_sym_STAR, + STATE(1085), 1, + sym__declarator, + STATE(1402), 1, + sym_ms_based_modifier, + STATE(1081), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37990] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, + ACTIONS(2067), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(1066), 1, + STATE(1088), 1, sym__type_declarator, - STATE(1376), 1, + STATE(1384), 1, sym_ms_based_modifier, - STATE(1094), 5, + STATE(1104), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37990] = 8, + [38019] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1738), 1, + ACTIONS(2077), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2081), 1, anon_sym_STAR, - STATE(1084), 1, - sym__declarator, - STATE(1394), 1, + STATE(1099), 1, + sym__field_declarator, + STATE(1330), 1, sym_ms_based_modifier, - STATE(1072), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [38019] = 5, + STATE(1090), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [38048] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1680), 1, - anon_sym_LBRACK, - ACTIONS(2520), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - STATE(1034), 2, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, + anon_sym_LBRACK, + STATE(1039), 1, + sym_parameter_list, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(1682), 7, + ACTIONS(2524), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [38042] = 8, + [38075] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2063), 1, - sym_identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN2, ACTIONS(2067), 1, - anon_sym_STAR, - STATE(1068), 1, - sym__type_declarator, - STATE(1376), 1, - sym_ms_based_modifier, - STATE(1094), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [38071] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, - anon_sym___based, - ACTIONS(2063), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2069), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2071), 1, anon_sym_STAR, - STATE(1070), 1, + STATE(1076), 1, sym__type_declarator, - STATE(1376), 1, + STATE(1384), 1, sym_ms_based_modifier, - STATE(1094), 5, + STATE(1104), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [38100] = 7, + [38104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2477), 1, + ACTIONS(1684), 1, anon_sym_LBRACK, - STATE(1030), 1, - sym_parameter_list, - STATE(1044), 2, + ACTIONS(2526), 1, + anon_sym_LBRACK_LBRACK, + STATE(1045), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2523), 5, + ACTIONS(1686), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [38127] = 10, + anon_sym_COLON, + [38127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2471), 1, - anon_sym_COMMA, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2475), 1, - anon_sym_SEMI, - ACTIONS(2477), 1, + ACTIONS(2531), 1, anon_sym_LBRACK, - ACTIONS(2479), 1, - anon_sym_EQ, - STATE(1030), 1, - sym_parameter_list, - STATE(1173), 1, - aux_sym_declaration_repeat1, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [38159] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2471), 1, + ACTIONS(2529), 9, anon_sym_COMMA, - ACTIONS(2473), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2477), 1, - anon_sym_LBRACK, - ACTIONS(2479), 1, - anon_sym_EQ, - ACTIONS(2485), 1, anon_sym_SEMI, - STATE(1030), 1, - sym_parameter_list, - STATE(1198), 1, - aux_sym_declaration_repeat1, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [38191] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(2471), 1, - anon_sym_COMMA, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2477), 1, - anon_sym_LBRACK, - ACTIONS(2479), 1, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(2483), 1, - anon_sym_SEMI, - STATE(1030), 1, - sym_parameter_list, - STATE(1170), 1, - aux_sym_declaration_repeat1, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [38223] = 7, + anon_sym_COLON, + [38145] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2500), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(1083), 1, + STATE(1100), 1, sym_parameter_list, - STATE(1060), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2525), 4, + ACTIONS(2533), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38249] = 10, + [38171] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2473), 1, - anon_sym_LPAREN2, ACTIONS(2477), 1, - anon_sym_LBRACK, + anon_sym_LPAREN2, ACTIONS(2479), 1, - anon_sym_EQ, - ACTIONS(2481), 1, anon_sym_SEMI, - STATE(1030), 1, + ACTIONS(2481), 1, + anon_sym_LBRACK, + ACTIONS(2483), 1, + anon_sym_EQ, + STATE(1039), 1, sym_parameter_list, - STATE(1177), 1, + STATE(1183), 1, aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38281] = 3, + [38203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - ACTIONS(2527), 9, + ACTIONS(2535), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69066,106 +69664,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [38299] = 5, + [38221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_LBRACK, - STATE(1034), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2531), 6, + ACTIONS(2539), 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, - [38321] = 7, + anon_sym_COLON, + [38239] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2500), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(1083), 1, + STATE(1100), 1, sym_parameter_list, - STATE(1060), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2535), 4, + ACTIONS(2543), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38347] = 3, + [38265] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2547), 1, anon_sym_LBRACK, - ACTIONS(2537), 9, + STATE(1045), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2545), 6, 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, - [38365] = 7, + [38287] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2500), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(1083), 1, + STATE(1100), 1, sym_parameter_list, - STATE(1060), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2541), 4, + ACTIONS(2549), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38391] = 3, + [38313] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2475), 1, + anon_sym_COMMA, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, anon_sym_LBRACK, - ACTIONS(2543), 9, + ACTIONS(2483), 1, + anon_sym_EQ, + ACTIONS(2485), 1, + anon_sym_SEMI, + STATE(1039), 1, + sym_parameter_list, + STATE(1204), 1, + aux_sym_declaration_repeat1, + STATE(1052), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38345] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2475), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2477), 1, anon_sym_LPAREN2, + ACTIONS(2481), 1, + anon_sym_LBRACK, + ACTIONS(2483), 1, + anon_sym_EQ, + ACTIONS(2487), 1, anon_sym_SEMI, - anon_sym___attribute__, + STATE(1039), 1, + sym_parameter_list, + STATE(1180), 1, + aux_sym_declaration_repeat1, + STATE(1052), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38377] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_COMMA, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, + anon_sym_LBRACK, + ACTIONS(2483), 1, anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2489), 1, + anon_sym_SEMI, + STATE(1039), 1, + sym_parameter_list, + STATE(1177), 1, + aux_sym_declaration_repeat1, + STATE(1052), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, [38409] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2500), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(1083), 1, + STATE(1100), 1, sym_parameter_list, - STATE(1060), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2547), 4, + ACTIONS(2551), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -69175,399 +69824,368 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2553), 1, anon_sym_COMMA, - ACTIONS(2551), 1, + ACTIONS(2555), 1, anon_sym_SEMI, - ACTIONS(2553), 1, + ACTIONS(2557), 1, anon_sym_LBRACK, - STATE(1096), 1, + STATE(1109), 1, sym_parameter_list, - STATE(1178), 1, + STATE(1186), 1, aux_sym_type_definition_repeat2, - STATE(1080), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38464] = 5, + [38464] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2555), 1, - sym_identifier, - ACTIONS(2559), 1, - sym_system_lib_string, - STATE(1421), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2557), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [38485] = 5, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, + anon_sym_LBRACK, + ACTIONS(2483), 1, + anon_sym_EQ, + STATE(1039), 1, + sym_parameter_list, + ACTIONS(2559), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1052), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38491] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2553), 1, + anon_sym_COMMA, + ACTIONS(2557), 1, + anon_sym_LBRACK, ACTIONS(2561), 1, - sym_identifier, + anon_sym_SEMI, + STATE(1109), 1, + sym_parameter_list, + STATE(1168), 1, + aux_sym_type_definition_repeat2, + STATE(1079), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38520] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(2563), 1, + sym_identifier, + ACTIONS(2567), 1, sym_system_lib_string, - STATE(1282), 2, + STATE(1429), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2557), 5, + ACTIONS(2565), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [38506] = 9, + [38541] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_COMMA, - ACTIONS(2553), 1, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(2565), 1, - anon_sym_SEMI, - STATE(1096), 1, + STATE(1109), 1, sym_parameter_list, - STATE(1187), 1, - aux_sym_type_definition_repeat2, - STATE(1080), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38535] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2477), 1, - anon_sym_LBRACK, - ACTIONS(2479), 1, - anon_sym_EQ, - STATE(1030), 1, - sym_parameter_list, - ACTIONS(2567), 2, + ACTIONS(2569), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [38562] = 7, + [38566] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, ACTIONS(2553), 1, + anon_sym_COMMA, + ACTIONS(2557), 1, anon_sym_LBRACK, - STATE(1096), 1, + ACTIONS(2571), 1, + anon_sym_SEMI, + STATE(1109), 1, sym_parameter_list, - STATE(1080), 2, + STATE(1173), 1, + aux_sym_type_definition_repeat2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2569), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [38587] = 7, + [38595] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2553), 1, + ACTIONS(2575), 1, anon_sym_LBRACK, - STATE(1096), 1, - sym_parameter_list, - STATE(1080), 2, + STATE(1045), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2571), 3, + ACTIONS(2573), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [38612] = 9, + anon_sym_COLON, + [38616] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_COMMA, ACTIONS(2553), 1, + anon_sym_COMMA, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(2573), 1, + ACTIONS(2577), 1, anon_sym_SEMI, - STATE(1096), 1, + STATE(1109), 1, sym_parameter_list, - STATE(1188), 1, + STATE(1196), 1, aux_sym_type_definition_repeat2, - STATE(1080), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38641] = 9, + [38645] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_COMMA, ACTIONS(2553), 1, + anon_sym_COMMA, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(2575), 1, + ACTIONS(2579), 1, anon_sym_SEMI, - STATE(1096), 1, + STATE(1109), 1, sym_parameter_list, - STATE(1150), 1, + STATE(1158), 1, aux_sym_type_definition_repeat2, - STATE(1080), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38670] = 7, + [38674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2500), 1, - anon_sym_LBRACK, - STATE(1083), 1, - sym_parameter_list, - STATE(1060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2577), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2581), 1, + sym_identifier, + ACTIONS(2583), 1, + sym_system_lib_string, + STATE(1282), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2565), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, [38695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2581), 1, - anon_sym_LBRACK, - STATE(1034), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2579), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2585), 1, + sym_identifier, + ACTIONS(2587), 1, + sym_system_lib_string, + STATE(1389), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2565), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, [38716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2589), 1, sym_identifier, - ACTIONS(2585), 1, + ACTIONS(2591), 1, sym_system_lib_string, - STATE(1381), 2, + STATE(1379), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2557), 5, + ACTIONS(2565), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [38737] = 7, + [38737] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, ACTIONS(2553), 1, - anon_sym_LBRACK, - STATE(1096), 1, - sym_parameter_list, - STATE(1080), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2587), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [38762] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2549), 1, anon_sym_COMMA, - ACTIONS(2553), 1, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2593), 1, anon_sym_SEMI, - STATE(1096), 1, + STATE(1109), 1, sym_parameter_list, - STATE(1158), 1, + STATE(1195), 1, aux_sym_type_definition_repeat2, - STATE(1080), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38791] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2591), 1, - sym_identifier, - ACTIONS(2593), 1, - sym_system_lib_string, - STATE(1371), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2557), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [38812] = 7, + [38766] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2553), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(1096), 1, + STATE(1100), 1, sym_parameter_list, - STATE(1080), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(2595), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - [38837] = 9, + anon_sym_COLON, + [38791] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_COMMA, ACTIONS(2553), 1, + anon_sym_COMMA, + ACTIONS(2557), 1, anon_sym_LBRACK, ACTIONS(2597), 1, anon_sym_SEMI, - STATE(1096), 1, + STATE(1109), 1, sym_parameter_list, - STATE(1148), 1, + STATE(1165), 1, aux_sym_type_definition_repeat2, - STATE(1080), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38866] = 9, + [38820] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_COMMA, - ACTIONS(2553), 1, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(2599), 1, - anon_sym_SEMI, - STATE(1096), 1, + STATE(1109), 1, sym_parameter_list, - STATE(1157), 1, - aux_sym_type_definition_repeat2, - STATE(1080), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38895] = 9, + ACTIONS(2599), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [38845] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_COMMA, - ACTIONS(2553), 1, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(2601), 1, - anon_sym_SEMI, - STATE(1096), 1, + STATE(1109), 1, sym_parameter_list, - STATE(1164), 1, - aux_sym_type_definition_repeat2, - STATE(1080), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38924] = 3, + ACTIONS(2601), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [38870] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(2603), 7, + STATE(1109), 1, + sym_parameter_list, + STATE(1079), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2603), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [38940] = 7, + [38895] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, ACTIONS(2553), 1, - anon_sym_LBRACK, - STATE(1096), 1, - sym_parameter_list, - ACTIONS(2607), 2, anon_sym_COMMA, + ACTIONS(2557), 1, + anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_SEMI, - STATE(1080), 2, + STATE(1109), 1, + sym_parameter_list, + STATE(1156), 1, + aux_sym_type_definition_repeat2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38964] = 8, + [38924] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(384), 1, - anon_sym_LBRACE, - ACTIONS(2473), 1, - anon_sym_LPAREN2, ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, anon_sym_LBRACK, - STATE(259), 1, - sym_compound_statement, - STATE(1030), 1, + STATE(1039), 1, sym_parameter_list, - STATE(1044), 2, + ACTIONS(2607), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38990] = 3, + [38948] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2611), 1, @@ -69580,47 +70198,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39006] = 7, + [38964] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2477), 1, + ACTIONS(2615), 1, anon_sym_LBRACK, - STATE(1030), 1, - sym_parameter_list, - ACTIONS(2613), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1044), 2, + STATE(1045), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39030] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(115), 1, - anon_sym_LBRACE, - ACTIONS(2473), 1, + ACTIONS(2613), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2477), 1, - anon_sym_LBRACK, - STATE(122), 1, - sym_compound_statement, - STATE(1030), 1, - sym_parameter_list, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39056] = 3, + anon_sym_SEMI, + [38984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, + ACTIONS(2619), 1, anon_sym_LBRACK, - ACTIONS(2615), 7, + ACTIONS(2617), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69628,30 +70226,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39072] = 8, + [39000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(2623), 1, + anon_sym_LBRACK, + ACTIONS(2621), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(428), 1, anon_sym_LBRACE, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2477), 1, - anon_sym_LBRACK, - STATE(243), 1, - sym_compound_statement, - STATE(1030), 1, - sym_parameter_list, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39098] = 3, + anon_sym_EQ, + [39016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2627), 1, anon_sym_LBRACK, - ACTIONS(2619), 7, + ACTIONS(2625), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69659,12 +70252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39114] = 3, + [39032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(2631), 1, anon_sym_LBRACK, - ACTIONS(2623), 7, + ACTIONS(2629), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69672,45 +70265,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39130] = 8, + [39048] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(115), 1, anon_sym_LBRACE, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, + ACTIONS(2481), 1, + anon_sym_LBRACK, + STATE(106), 1, + sym_compound_statement, + STATE(1039), 1, + sym_parameter_list, + STATE(1052), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [39074] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(319), 1, + anon_sym_LBRACE, ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, anon_sym_LBRACK, - STATE(280), 1, + STATE(299), 1, sym_compound_statement, - STATE(1030), 1, + STATE(1039), 1, sym_parameter_list, - STATE(1044), 2, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39156] = 5, + [39100] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2629), 1, + ACTIONS(373), 1, + anon_sym_LBRACE, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, anon_sym_LBRACK, - STATE(1034), 2, + STATE(289), 1, + sym_compound_statement, + STATE(1039), 1, + sym_parameter_list, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2627), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + [39126] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(2477), 1, anon_sym_LPAREN2, + ACTIONS(2481), 1, + anon_sym_LBRACK, + STATE(248), 1, + sym_compound_statement, + STATE(1039), 1, + sym_parameter_list, + STATE(1052), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [39152] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2557), 1, + anon_sym_LBRACK, + STATE(1109), 1, + sym_parameter_list, + ACTIONS(2633), 2, + anon_sym_COMMA, anon_sym_SEMI, + STATE(1079), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, [39176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, + ACTIONS(2637), 1, anon_sym_LBRACK, - ACTIONS(2631), 7, + ACTIONS(2635), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69721,9 +70370,9 @@ static const uint16_t ts_small_parse_table[] = { [39192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, + ACTIONS(2641), 1, anon_sym_LBRACK, - ACTIONS(2635), 6, + ACTIONS(2639), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69733,9 +70382,9 @@ static const uint16_t ts_small_parse_table[] = { [39207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2639), 6, + ACTIONS(2643), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69747,23 +70396,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2481), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(2647), 1, anon_sym_RPAREN, - STATE(1030), 1, + STATE(1039), 1, sym_parameter_list, - STATE(1044), 2, + STATE(1052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [39245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 1, + ACTIONS(2651), 1, anon_sym_LBRACK, - ACTIONS(2645), 6, + ACTIONS(2649), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69773,9 +70422,9 @@ static const uint16_t ts_small_parse_table[] = { [39260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - ACTIONS(2649), 6, + ACTIONS(2653), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69785,176 +70434,165 @@ static const uint16_t ts_small_parse_table[] = { [39275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2659), 1, anon_sym_LBRACK, - ACTIONS(2653), 6, + ACTIONS(2657), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39290] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2657), 1, - anon_sym_RPAREN, - STATE(1096), 1, - sym_parameter_list, - STATE(1080), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39313] = 3, + [39290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 1, + ACTIONS(2663), 1, anon_sym_LBRACK, - ACTIONS(2659), 6, + ACTIONS(2661), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39328] = 3, + [39305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(2667), 1, anon_sym_LBRACK, - ACTIONS(2663), 6, + ACTIONS(2665), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39343] = 3, + [39320] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(2667), 6, - anon_sym_COMMA, + ACTIONS(2669), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [39358] = 7, + STATE(1109), 1, + sym_parameter_list, + STATE(1079), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [39343] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2500), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, ACTIONS(2671), 1, anon_sym_RPAREN, - STATE(1083), 1, + STATE(1100), 1, sym_parameter_list, - STATE(1060), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39381] = 3, + [39366] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2673), 5, + ACTIONS(2673), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39395] = 3, + anon_sym_COLON, + [39381] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2677), 1, + anon_sym_LBRACK, + ACTIONS(2680), 1, + anon_sym_EQ, + ACTIONS(2682), 1, + anon_sym_DOT, + STATE(1101), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [39399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 1, + ACTIONS(2687), 1, anon_sym_LBRACK, - ACTIONS(2677), 5, + ACTIONS(2685), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39409] = 3, + [39413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_LBRACK, - ACTIONS(2681), 5, + ACTIONS(2689), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39423] = 3, + [39427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2687), 1, + ACTIONS(2695), 1, anon_sym_LBRACK, - ACTIONS(2685), 5, + ACTIONS(2693), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39437] = 5, + [39441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1317), 1, - anon_sym_LBRACK, - ACTIONS(2689), 1, - anon_sym_EQ, - ACTIONS(2691), 1, - anon_sym_DOT, - STATE(1100), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [39455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 1, + ACTIONS(2699), 1, anon_sym_LBRACK, - ACTIONS(2693), 5, + ACTIONS(2697), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39469] = 3, + [39455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, + ACTIONS(2703), 1, anon_sym_LBRACK, - ACTIONS(2697), 5, + ACTIONS(2701), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39483] = 5, + [39469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(1274), 1, anon_sym_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2705), 1, anon_sym_EQ, - ACTIONS(2706), 1, + ACTIONS(2707), 1, anon_sym_DOT, - STATE(1100), 3, + STATE(1101), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [39501] = 3, + [39487] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2711), 1, @@ -69965,7 +70603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39515] = 3, + [39501] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2715), 1, @@ -69976,141 +70614,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39529] = 5, + [39515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2717), 1, + ACTIONS(2719), 1, anon_sym_LBRACK, - STATE(1127), 1, - sym_parameter_list, - ACTIONS(2613), 2, + ACTIONS(2717), 5, anon_sym_COMMA, anon_sym_RPAREN, - [39546] = 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [39529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2461), 1, anon_sym_COLON, - ACTIONS(2496), 1, + ACTIONS(2493), 1, anon_sym_COMMA, - ACTIONS(2719), 1, + ACTIONS(2721), 1, anon_sym_SEMI, - STATE(1143), 1, + STATE(1152), 1, aux_sym_field_declaration_repeat1, - STATE(1315), 1, + STATE(1420), 1, sym_bitfield_clause, - [39565] = 5, + [39548] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(2723), 1, - anon_sym_COLON_COLON, - STATE(1252), 1, - sym_argument_list, - ACTIONS(2721), 2, + ACTIONS(2461), 1, + anon_sym_COLON, + ACTIONS(2493), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [39582] = 6, + ACTIONS(2723), 1, + anon_sym_SEMI, + STATE(1152), 1, + aux_sym_field_declaration_repeat1, + STATE(1331), 1, + sym_bitfield_clause, + [39567] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2461), 1, anon_sym_COLON, - ACTIONS(2496), 1, + ACTIONS(2493), 1, anon_sym_COMMA, ACTIONS(2725), 1, anon_sym_SEMI, - STATE(1143), 1, + STATE(1152), 1, aux_sym_field_declaration_repeat1, - STATE(1324), 1, + STATE(1322), 1, sym_bitfield_clause, - [39601] = 5, + [39586] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + ACTIONS(2729), 1, + anon_sym_COLON_COLON, + STATE(1261), 1, + sym_argument_list, + ACTIONS(2727), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [39603] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2717), 1, + ACTIONS(2733), 1, anon_sym_LBRACK, - STATE(1127), 1, + STATE(1136), 1, sym_parameter_list, - ACTIONS(2727), 2, + ACTIONS(2731), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39618] = 6, + [39620] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2091), 1, + ACTIONS(2101), 1, anon_sym_LBRACE, - ACTIONS(2729), 1, + ACTIONS(2735), 1, sym_identifier, - STATE(872), 1, + STATE(876), 1, sym_field_declaration_list, - STATE(1189), 1, + STATE(1198), 1, sym_ms_declspec_modifier, - [39637] = 6, + [39639] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2091), 1, + ACTIONS(2101), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2737), 1, sym_identifier, - STATE(863), 1, + STATE(893), 1, sym_field_declaration_list, - STATE(1194), 1, + STATE(1192), 1, sym_ms_declspec_modifier, - [39656] = 5, + [39658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2717), 1, + ACTIONS(2733), 1, anon_sym_LBRACK, - STATE(1127), 1, + STATE(1136), 1, sym_parameter_list, - ACTIONS(2733), 2, + ACTIONS(2739), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39673] = 6, + [39675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_COLON, - ACTIONS(2496), 1, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2733), 1, + anon_sym_LBRACK, + STATE(1136), 1, + sym_parameter_list, + ACTIONS(2607), 2, anon_sym_COMMA, - ACTIONS(2735), 1, - anon_sym_SEMI, - STATE(1143), 1, - aux_sym_field_declaration_repeat1, - STATE(1412), 1, - sym_bitfield_clause, + anon_sym_RPAREN, [39692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2717), 1, + ACTIONS(2733), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2741), 1, anon_sym_RPAREN, - STATE(1127), 1, + STATE(1136), 1, sym_parameter_list, [39708] = 5, - ACTIONS(2247), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 1, - anon_sym_LF, - ACTIONS(2741), 1, - anon_sym_LPAREN, + ACTIONS(2477), 1, + anon_sym_LPAREN2, + ACTIONS(2733), 1, + anon_sym_LBRACK, ACTIONS(2743), 1, - sym_preproc_arg, - STATE(1231), 1, - sym_preproc_params, + anon_sym_RPAREN, + STATE(1136), 1, + sym_parameter_list, [39724] = 2, ACTIONS(3), 1, sym_comment, @@ -70119,132 +70768,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39734] = 5, - ACTIONS(2247), 1, + [39734] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 1, - anon_sym_LPAREN, - ACTIONS(2747), 1, - anon_sym_LF, - ACTIONS(2749), 1, - sym_preproc_arg, - STATE(1228), 1, - sym_preproc_params, - [39750] = 5, - ACTIONS(2247), 1, + ACTIONS(2747), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [39744] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2751), 1, + ACTIONS(2749), 1, anon_sym_DQUOTE, - ACTIONS(2753), 1, + ACTIONS(2751), 1, aux_sym_string_literal_token1, - ACTIONS(2755), 1, + ACTIONS(2753), 1, sym_escape_sequence, - STATE(1129), 1, + STATE(1149), 1, aux_sym_string_literal_repeat1, - [39766] = 5, - ACTIONS(2247), 1, + [39760] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, - anon_sym_DQUOTE, - ACTIONS(2759), 1, - aux_sym_string_literal_token1, - ACTIONS(2761), 1, - sym_escape_sequence, - STATE(1140), 1, - aux_sym_string_literal_repeat1, - [39782] = 2, + ACTIONS(2755), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [39770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 4, + ACTIONS(2757), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39792] = 4, + [39780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 1, + sym_identifier, + ACTIONS(2761), 1, + anon_sym_COMMA, + ACTIONS(2763), 1, + anon_sym_RBRACE, + STATE(1170), 1, + sym_enumerator, + [39796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - STATE(1241), 1, + STATE(1250), 1, sym_argument_list, ACTIONS(2765), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [39806] = 5, - ACTIONS(2247), 1, + [39810] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2741), 1, - anon_sym_LPAREN, ACTIONS(2767), 1, anon_sym_LF, ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(2771), 1, sym_preproc_arg, - STATE(1253), 1, + STATE(1240), 1, sym_preproc_params, - [39822] = 5, - ACTIONS(2247), 1, + [39826] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2741), 1, + ACTIONS(2769), 1, anon_sym_LPAREN, - ACTIONS(2771), 1, - anon_sym_LF, ACTIONS(2773), 1, + anon_sym_LF, + ACTIONS(2775), 1, sym_preproc_arg, - STATE(1256), 1, + STATE(1229), 1, sym_preproc_params, - [39838] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2473), 1, - anon_sym_LPAREN2, - ACTIONS(2717), 1, - anon_sym_LBRACK, - ACTIONS(2775), 1, - anon_sym_RPAREN, - STATE(1127), 1, - sym_parameter_list, - [39854] = 5, + [39842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2717), 1, + ACTIONS(2733), 1, anon_sym_LBRACK, ACTIONS(2777), 1, anon_sym_RPAREN, - STATE(1127), 1, + STATE(1136), 1, sym_parameter_list, - [39870] = 5, + [39858] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_LPAREN2, - ACTIONS(2717), 1, + ACTIONS(2733), 1, anon_sym_LBRACK, ACTIONS(2779), 1, anon_sym_RPAREN, - STATE(1127), 1, + STATE(1136), 1, sym_parameter_list, - [39886] = 2, + [39874] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2477), 1, anon_sym_LPAREN2, + ACTIONS(2733), 1, anon_sym_LBRACK, - [39896] = 5, - ACTIONS(2247), 1, + ACTIONS(2781), 1, + anon_sym_RPAREN, + STATE(1136), 1, + sym_parameter_list, + [39890] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2741), 1, + ACTIONS(2769), 1, anon_sym_LPAREN, ACTIONS(2783), 1, anon_sym_LF, ACTIONS(2785), 1, sym_preproc_arg, - STATE(1209), 1, + STATE(1218), 1, sym_preproc_params, - [39912] = 2, + [39906] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2787), 4, @@ -70252,306 +70898,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39922] = 5, - ACTIONS(2247), 1, - sym_comment, - ACTIONS(2741), 1, - anon_sym_LPAREN, - ACTIONS(2789), 1, - anon_sym_LF, - ACTIONS(2791), 1, - sym_preproc_arg, - STATE(1259), 1, - sym_preproc_params, - [39938] = 5, - ACTIONS(2247), 1, - sym_comment, - ACTIONS(2759), 1, - aux_sym_string_literal_token1, - ACTIONS(2761), 1, - sym_escape_sequence, - ACTIONS(2793), 1, - anon_sym_DQUOTE, - STATE(1140), 1, - aux_sym_string_literal_repeat1, - [39954] = 2, + [39916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 4, + ACTIONS(2789), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39964] = 2, - ACTIONS(3), 1, + [39926] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2797), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [39974] = 2, + ACTIONS(2751), 1, + aux_sym_string_literal_token1, + ACTIONS(2753), 1, + sym_escape_sequence, + ACTIONS(2791), 1, + anon_sym_DQUOTE, + STATE(1149), 1, + aux_sym_string_literal_repeat1, + [39942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 4, + ACTIONS(2793), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39984] = 2, - ACTIONS(3), 1, + [39952] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2801), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [39994] = 2, + ACTIONS(2751), 1, + aux_sym_string_literal_token1, + ACTIONS(2753), 1, + sym_escape_sequence, + ACTIONS(2795), 1, + anon_sym_DQUOTE, + STATE(1149), 1, + aux_sym_string_literal_repeat1, + [39968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 4, + ACTIONS(2797), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40004] = 5, - ACTIONS(2247), 1, + [39978] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2799), 1, anon_sym_DQUOTE, - ACTIONS(2807), 1, + ACTIONS(2801), 1, aux_sym_string_literal_token1, - ACTIONS(2809), 1, + ACTIONS(2803), 1, sym_escape_sequence, - STATE(1145), 1, + STATE(1137), 1, aux_sym_string_literal_repeat1, - [40020] = 2, + [39994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 4, + ACTIONS(2805), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40030] = 5, - ACTIONS(2247), 1, + [40004] = 5, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(2807), 1, + anon_sym_DQUOTE, + ACTIONS(2809), 1, + aux_sym_string_literal_token1, + ACTIONS(2811), 1, + sym_escape_sequence, + STATE(1139), 1, + aux_sym_string_literal_repeat1, + [40020] = 5, + ACTIONS(2238), 1, sym_comment, + ACTIONS(2769), 1, + anon_sym_LPAREN, ACTIONS(2813), 1, - anon_sym_DQUOTE, + anon_sym_LF, ACTIONS(2815), 1, - aux_sym_string_literal_token1, + sym_preproc_arg, + STATE(1262), 1, + sym_preproc_params, + [40036] = 5, + ACTIONS(2238), 1, + sym_comment, ACTIONS(2817), 1, + anon_sym_DQUOTE, + ACTIONS(2819), 1, + aux_sym_string_literal_token1, + ACTIONS(2821), 1, sym_escape_sequence, - STATE(1117), 1, + STATE(1124), 1, aux_sym_string_literal_repeat1, - [40046] = 2, - ACTIONS(3), 1, + [40052] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2819), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [40056] = 2, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + anon_sym_LF, + ACTIONS(2825), 1, + sym_preproc_arg, + STATE(1265), 1, + sym_preproc_params, + [40068] = 5, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + anon_sym_LF, + ACTIONS(2829), 1, + sym_preproc_arg, + STATE(1268), 1, + sym_preproc_params, + [40084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 4, + ACTIONS(2831), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40066] = 5, - ACTIONS(2247), 1, + [40094] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(2833), 1, anon_sym_DQUOTE, - ACTIONS(2825), 1, + ACTIONS(2835), 1, aux_sym_string_literal_token1, - ACTIONS(2828), 1, + ACTIONS(2838), 1, sym_escape_sequence, - STATE(1140), 1, + STATE(1149), 1, aux_sym_string_literal_repeat1, - [40082] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2831), 1, - sym_identifier, - ACTIONS(2833), 1, - anon_sym_COMMA, - ACTIONS(2835), 1, - anon_sym_RBRACE, - STATE(1163), 1, - sym_enumerator, - [40098] = 5, - ACTIONS(2247), 1, + [40110] = 5, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2741), 1, + ACTIONS(2769), 1, anon_sym_LPAREN, - ACTIONS(2837), 1, + ACTIONS(2841), 1, anon_sym_LF, - ACTIONS(2839), 1, + ACTIONS(2843), 1, sym_preproc_arg, - STATE(1236), 1, + STATE(1214), 1, sym_preproc_params, - [40114] = 4, + [40126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(2845), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [40136] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, anon_sym_COMMA, - STATE(1143), 1, + STATE(1152), 1, aux_sym_field_declaration_repeat1, - ACTIONS(2844), 2, + ACTIONS(2850), 2, anon_sym_SEMI, anon_sym_COLON, - [40128] = 5, + [40150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2852), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2717), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_RPAREN, - STATE(1127), 1, - sym_parameter_list, - [40144] = 5, - ACTIONS(2247), 1, - sym_comment, - ACTIONS(2759), 1, - aux_sym_string_literal_token1, - ACTIONS(2761), 1, - sym_escape_sequence, - ACTIONS(2848), 1, - anon_sym_DQUOTE, - STATE(1140), 1, - aux_sym_string_literal_repeat1, [40160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 1, + ACTIONS(2125), 1, anon_sym_COMMA, - ACTIONS(2850), 1, + ACTIONS(2854), 1, anon_sym_RPAREN, - STATE(1183), 1, + STATE(1188), 1, aux_sym_preproc_argument_list_repeat1, [40173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2854), 1, - anon_sym_RPAREN, - STATE(1184), 1, - aux_sym_preproc_params_repeat1, + ACTIONS(2856), 1, + anon_sym_SEMI, + STATE(1208), 1, + aux_sym_declaration_repeat1, [40186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(2553), 1, anon_sym_COMMA, - ACTIONS(2856), 1, + ACTIONS(2858), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(1164), 1, aux_sym_type_definition_repeat2, [40199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2095), 1, anon_sym_LBRACE, - ACTIONS(2858), 1, + ACTIONS(2860), 1, sym_identifier, - STATE(873), 1, + STATE(896), 1, sym_enumerator_list, [40212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(2553), 1, anon_sym_COMMA, - ACTIONS(2860), 1, + ACTIONS(2862), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(1164), 1, aux_sym_type_definition_repeat2, [40225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 1, + ACTIONS(1821), 1, anon_sym_COMMA, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_RBRACE, - STATE(1204), 1, + STATE(1206), 1, aux_sym_initializer_list_repeat1, [40238] = 4, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2247), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_LF, - STATE(964), 1, - sym_preproc_argument_list, - [40251] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2864), 1, anon_sym_COMMA, ACTIONS(2866), 1, anon_sym_RBRACK_RBRACK, - STATE(1191), 1, + STATE(1199), 1, aux_sym_attribute_declaration_repeat1, - [40264] = 4, - ACTIONS(2245), 1, + [40251] = 4, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, ACTIONS(2868), 1, anon_sym_LF, - STATE(964), 1, + STATE(958), 1, + sym_preproc_argument_list, + [40264] = 4, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(2870), 1, + anon_sym_LF, + STATE(958), 1, sym_preproc_argument_list, [40277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, + ACTIONS(1849), 1, anon_sym_COMMA, - ACTIONS(2870), 1, + ACTIONS(2872), 1, anon_sym_RPAREN, - STATE(1182), 1, + STATE(1185), 1, aux_sym_argument_list_repeat1, [40290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_SEMI, - STATE(1156), 1, - aux_sym_type_definition_repeat2, - [40303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2549), 1, + ACTIONS(2874), 1, anon_sym_COMMA, ACTIONS(2877), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(1164), 1, aux_sym_type_definition_repeat2, - [40316] = 4, + [40303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(2553), 1, anon_sym_COMMA, ACTIONS(2879), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(1164), 1, aux_sym_type_definition_repeat2, - [40329] = 4, + [40316] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2864), 1, anon_sym_COMMA, ACTIONS(2881), 1, anon_sym_RBRACK_RBRACK, - STATE(1172), 1, + STATE(1179), 1, aux_sym_attribute_declaration_repeat1, - [40342] = 3, + [40329] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2885), 1, @@ -70559,1015 +71199,1024 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2883), 2, anon_sym_COMMA, anon_sym_RBRACE, + [40340] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2553), 1, + anon_sym_COMMA, + ACTIONS(2887), 1, + anon_sym_SEMI, + STATE(1164), 1, + aux_sym_type_definition_repeat2, [40353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 1, + ACTIONS(2759), 1, sym_identifier, - ACTIONS(2887), 1, + ACTIONS(2889), 1, anon_sym_RBRACE, - STATE(1240), 1, + STATE(1249), 1, sym_enumerator, [40366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(2891), 1, anon_sym_COMMA, - ACTIONS(2892), 1, + ACTIONS(2893), 1, anon_sym_RBRACE, - STATE(1162), 1, + STATE(1202), 1, aux_sym_enumerator_list_repeat1, [40379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(2895), 1, anon_sym_COMMA, - ACTIONS(2896), 1, + ACTIONS(2898), 1, anon_sym_RBRACE, - STATE(1195), 1, + STATE(1171), 1, aux_sym_enumerator_list_repeat1, [40392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, - anon_sym_COMMA, - ACTIONS(2898), 1, - anon_sym_SEMI, - STATE(1156), 1, - aux_sym_type_definition_repeat2, - [40405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, ACTIONS(2900), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(1208), 1, aux_sym_declaration_repeat1, - [40418] = 4, + [40405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2553), 1, anon_sym_COMMA, ACTIONS(2902), 1, anon_sym_SEMI, - STATE(1201), 1, - aux_sym_declaration_repeat1, - [40431] = 4, + STATE(1164), 1, + aux_sym_type_definition_repeat2, + [40418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, ACTIONS(2904), 1, anon_sym_SEMI, - STATE(1174), 1, + STATE(1181), 1, aux_sym_declaration_repeat1, - [40444] = 4, + [40431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, - anon_sym_COMMA, ACTIONS(2906), 1, + anon_sym_COMMA, + ACTIONS(2908), 1, anon_sym_RPAREN, - STATE(1147), 1, + STATE(1213), 1, aux_sym_preproc_params_repeat1, - [40457] = 4, + [40444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2908), 1, + ACTIONS(2910), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(1208), 1, aux_sym_declaration_repeat1, - [40470] = 4, + [40457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2910), 1, + ACTIONS(2912), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(1208), 1, aux_sym_declaration_repeat1, - [40483] = 4, + [40470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, - anon_sym_COMMA, ACTIONS(2914), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, anon_sym_RPAREN, - STATE(1205), 1, + STATE(1211), 1, aux_sym_parameter_list_repeat1, - [40496] = 4, + [40483] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2864), 1, anon_sym_COMMA, - ACTIONS(2916), 1, + ACTIONS(2918), 1, anon_sym_RBRACK_RBRACK, - STATE(1191), 1, + STATE(1199), 1, aux_sym_attribute_declaration_repeat1, - [40509] = 4, + [40496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2918), 1, + ACTIONS(2920), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(1208), 1, aux_sym_declaration_repeat1, - [40522] = 4, + [40509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2920), 1, + ACTIONS(2922), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(1208), 1, aux_sym_declaration_repeat1, - [40535] = 4, + [40522] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2864), 1, anon_sym_COMMA, - ACTIONS(2922), 1, + ACTIONS(2924), 1, anon_sym_RBRACK_RBRACK, - STATE(1153), 1, + STATE(1160), 1, aux_sym_attribute_declaration_repeat1, - [40548] = 4, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2247), 1, - sym_comment, - ACTIONS(2924), 1, - anon_sym_LF, - STATE(964), 1, - sym_preproc_argument_list, - [40561] = 4, + [40535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, ACTIONS(2926), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(1208), 1, aux_sym_declaration_repeat1, - [40574] = 4, + [40548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(2475), 1, anon_sym_COMMA, ACTIONS(2928), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(1176), 1, + aux_sym_declaration_repeat1, + [40561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1905), 1, + anon_sym_RPAREN, + ACTIONS(2930), 1, + anon_sym_COMMA, + STATE(1185), 1, + aux_sym_argument_list_repeat1, + [40574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2553), 1, + anon_sym_COMMA, + ACTIONS(2933), 1, + anon_sym_SEMI, + STATE(1164), 1, aux_sym_type_definition_repeat2, [40587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, + ACTIONS(1967), 1, anon_sym_RBRACE, - ACTIONS(2930), 1, + ACTIONS(2935), 1, anon_sym_COMMA, - STATE(1179), 1, + STATE(1187), 1, aux_sym_initializer_list_repeat1, [40600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2287), 1, + anon_sym_RPAREN, + ACTIONS(2938), 1, anon_sym_COMMA, - ACTIONS(2933), 1, - anon_sym_SEMI, - STATE(1169), 1, - aux_sym_declaration_repeat1, + STATE(1188), 1, + aux_sym_preproc_argument_list_repeat1, [40613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 3, + ACTIONS(2941), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, [40622] = 4, - ACTIONS(3), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2238), 1, sym_comment, - ACTIONS(1933), 1, - anon_sym_RPAREN, - ACTIONS(2937), 1, - anon_sym_COMMA, - STATE(1182), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2943), 1, + anon_sym_LF, + STATE(958), 1, + sym_preproc_argument_list, [40635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_RPAREN, - ACTIONS(2940), 1, - anon_sym_COMMA, - STATE(1183), 1, - aux_sym_preproc_argument_list_repeat1, - [40648] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2943), 1, + ACTIONS(2945), 1, anon_sym_COMMA, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_RPAREN, - STATE(1184), 1, + STATE(1191), 1, aux_sym_preproc_params_repeat1, - [40661] = 3, + [40648] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2101), 1, + anon_sym_LBRACE, ACTIONS(2950), 1, - anon_sym_RPAREN, - ACTIONS(2948), 2, - anon_sym_DOT_DOT_DOT, sym_identifier, - [40672] = 4, + STATE(879), 1, + sym_field_declaration_list, + [40661] = 4, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LF, + STATE(958), 1, + sym_preproc_argument_list, + [40674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2954), 1, anon_sym_COMMA, - ACTIONS(2952), 1, - anon_sym_RBRACK_RBRACK, - STATE(1196), 1, - aux_sym_attribute_declaration_repeat1, - [40685] = 4, + ACTIONS(2957), 1, + anon_sym_RPAREN, + STATE(1194), 1, + aux_sym_parameter_list_repeat1, + [40687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(2553), 1, anon_sym_COMMA, - ACTIONS(2954), 1, + ACTIONS(2959), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(1164), 1, aux_sym_type_definition_repeat2, - [40698] = 4, + [40700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(2553), 1, anon_sym_COMMA, - ACTIONS(2956), 1, + ACTIONS(2961), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(1164), 1, aux_sym_type_definition_repeat2, - [40711] = 4, + [40713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2864), 1, + anon_sym_COMMA, + ACTIONS(2963), 1, + anon_sym_RBRACK_RBRACK, + STATE(1201), 1, + aux_sym_attribute_declaration_repeat1, + [40726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2101), 1, anon_sym_LBRACE, - ACTIONS(2958), 1, + ACTIONS(2965), 1, sym_identifier, - STATE(888), 1, + STATE(881), 1, sym_field_declaration_list, - [40724] = 4, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2247), 1, - sym_comment, - ACTIONS(2960), 1, - anon_sym_LF, - STATE(964), 1, - sym_preproc_argument_list, - [40737] = 4, + [40739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(2967), 1, anon_sym_COMMA, - ACTIONS(2965), 1, + ACTIONS(2970), 1, anon_sym_RBRACK_RBRACK, - STATE(1191), 1, + STATE(1199), 1, aux_sym_attribute_declaration_repeat1, - [40750] = 4, + [40752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 1, + ACTIONS(2759), 1, sym_identifier, - ACTIONS(2967), 1, + ACTIONS(2972), 1, anon_sym_RBRACE, - STATE(1240), 1, + STATE(1249), 1, sym_enumerator, - [40763] = 4, + [40765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2864), 1, anon_sym_COMMA, - ACTIONS(2972), 1, - anon_sym_RPAREN, - STATE(1193), 1, - aux_sym_parameter_list_repeat1, - [40776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2091), 1, - anon_sym_LBRACE, ACTIONS(2974), 1, - sym_identifier, - STATE(881), 1, - sym_field_declaration_list, - [40789] = 4, + anon_sym_RBRACK_RBRACK, + STATE(1199), 1, + aux_sym_attribute_declaration_repeat1, + [40778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2972), 1, anon_sym_RBRACE, ACTIONS(2976), 1, anon_sym_COMMA, - STATE(1162), 1, + STATE(1171), 1, aux_sym_enumerator_list_repeat1, - [40802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_COMMA, - ACTIONS(2978), 1, - anon_sym_RBRACK_RBRACK, - STATE(1191), 1, - aux_sym_attribute_declaration_repeat1, - [40815] = 4, + [40791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, - anon_sym_COMMA, ACTIONS(2980), 1, - anon_sym_SEMI, - STATE(1165), 1, - aux_sym_declaration_repeat1, - [40828] = 4, + anon_sym_RPAREN, + ACTIONS(2978), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [40802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_COMMA, ACTIONS(2982), 1, anon_sym_SEMI, - STATE(1201), 1, - aux_sym_declaration_repeat1, - [40841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2471), 1, - anon_sym_COMMA, - ACTIONS(2984), 1, - anon_sym_SEMI, - STATE(1166), 1, + STATE(1208), 1, aux_sym_declaration_repeat1, - [40854] = 2, + [40815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 3, + ACTIONS(2984), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [40863] = 4, + [40824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 1, + ACTIONS(1327), 1, + anon_sym_RBRACE, + ACTIONS(2986), 1, + anon_sym_COMMA, + STATE(1187), 1, + aux_sym_initializer_list_repeat1, + [40837] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(2988), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(1172), 1, aux_sym_declaration_repeat1, - [40876] = 4, + [40850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, + ACTIONS(2990), 1, anon_sym_COMMA, ACTIONS(2993), 1, - anon_sym_RPAREN, - STATE(1182), 1, - aux_sym_argument_list_repeat1, - [40889] = 4, + anon_sym_SEMI, + STATE(1208), 1, + aux_sym_declaration_repeat1, + [40863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 1, + ACTIONS(1849), 1, anon_sym_COMMA, ACTIONS(2995), 1, anon_sym_RPAREN, - STATE(1183), 1, - aux_sym_preproc_argument_list_repeat1, - [40902] = 4, + STATE(1185), 1, + aux_sym_argument_list_repeat1, + [40876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 1, - anon_sym_RBRACE, - ACTIONS(2997), 1, + ACTIONS(2125), 1, anon_sym_COMMA, - STATE(1179), 1, - aux_sym_initializer_list_repeat1, - [40915] = 4, + ACTIONS(2997), 1, + anon_sym_RPAREN, + STATE(1188), 1, + aux_sym_preproc_argument_list_repeat1, + [40889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, + ACTIONS(2914), 1, anon_sym_COMMA, ACTIONS(2999), 1, anon_sym_RPAREN, - STATE(1193), 1, + STATE(1194), 1, aux_sym_parameter_list_repeat1, - [40928] = 2, + [40902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 2, + ACTIONS(2475), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [40936] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 2, - anon_sym_RPAREN, + ACTIONS(3001), 1, anon_sym_SEMI, - [40944] = 3, + STATE(1155), 1, + aux_sym_declaration_repeat1, + [40915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_LPAREN2, - STATE(352), 1, - sym_parenthesized_expression, - [40954] = 3, - ACTIONS(2247), 1, - sym_comment, + ACTIONS(2906), 1, + anon_sym_COMMA, ACTIONS(3003), 1, - anon_sym_LF, - ACTIONS(3005), 1, - sym_preproc_arg, - [40964] = 2, - ACTIONS(2247), 1, + anon_sym_RPAREN, + STATE(1191), 1, + aux_sym_preproc_params_repeat1, + [40928] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3007), 2, + ACTIONS(3005), 1, anon_sym_LF, + ACTIONS(3007), 1, sym_preproc_arg, - [40972] = 3, + [40938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_LPAREN2, - STATE(1299), 1, - sym_parenthesized_expression, - [40982] = 3, + ACTIONS(2957), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 1, + ACTIONS(3009), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(1240), 1, - sym_enumerator, - [40992] = 3, - ACTIONS(2247), 1, + [40954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + anon_sym_LPAREN2, + STATE(1360), 1, + sym_argument_list, + [40964] = 3, + ACTIONS(2238), 1, sym_comment, ACTIONS(3011), 1, anon_sym_LF, ACTIONS(3013), 1, sym_preproc_arg, - [41002] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3015), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [41010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_LPAREN2, - STATE(318), 1, - sym_parenthesized_expression, - [41020] = 3, + [40974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3015), 1, anon_sym_LPAREN2, - STATE(316), 1, + STATE(1305), 1, sym_parenthesized_expression, - [41030] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_compound_statement, - [41040] = 2, + [40984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 2, + ACTIONS(1965), 2, anon_sym_COMMA, anon_sym_SEMI, - [41048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 1, - anon_sym_LPAREN2, - STATE(1225), 1, - sym_parenthesized_expression, - [41058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41066] = 3, - ACTIONS(2247), 1, + [40992] = 3, + ACTIONS(2238), 1, sym_comment, ACTIONS(3017), 1, anon_sym_LF, ACTIONS(3019), 1, sym_preproc_arg, - [41076] = 2, + [41002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [41084] = 2, + ACTIONS(3015), 1, + anon_sym_LPAREN2, + STATE(1234), 1, + sym_parenthesized_expression, + [41012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [41092] = 3, + ACTIONS(3021), 1, + anon_sym_LPAREN2, + STATE(329), 1, + sym_parenthesized_expression, + [41022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 1, + anon_sym_LPAREN2, + STATE(324), 1, + sym_parenthesized_expression, + [41032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(177), 1, + STATE(228), 1, sym_compound_statement, - [41102] = 3, + [41042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(384), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - STATE(224), 1, + STATE(172), 1, sym_compound_statement, - [41112] = 2, - ACTIONS(2247), 1, - sym_comment, - ACTIONS(3021), 2, - anon_sym_LF, - sym_preproc_arg, - [41120] = 2, + [41052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2970), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [41128] = 3, - ACTIONS(2247), 1, + anon_sym_RBRACK_RBRACK, + [41060] = 3, + ACTIONS(2238), 1, sym_comment, ACTIONS(3023), 1, anon_sym_LF, ACTIONS(3025), 1, sym_preproc_arg, - [41138] = 3, - ACTIONS(3), 1, + [41070] = 3, + ACTIONS(2238), 1, sym_comment, ACTIONS(3027), 1, - sym_identifier, + anon_sym_LF, ACTIONS(3029), 1, - anon_sym_LPAREN2, - [41148] = 3, - ACTIONS(2247), 1, + sym_preproc_arg, + [41080] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(3031), 1, - anon_sym_LF, + sym_identifier, ACTIONS(3033), 1, - sym_preproc_arg, - [41158] = 3, - ACTIONS(2247), 1, + anon_sym_LPAREN2, + [41090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 1, + anon_sym_LPAREN2, + STATE(346), 1, + sym_parenthesized_expression, + [41100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [41108] = 3, + ACTIONS(2238), 1, sym_comment, ACTIONS(3035), 1, anon_sym_LF, ACTIONS(3037), 1, sym_preproc_arg, - [41168] = 2, + [41118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 1, + anon_sym_LBRACE, + STATE(156), 1, + sym_compound_statement, + [41128] = 2, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(3039), 2, + anon_sym_LF, + sym_preproc_arg, + [41136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 2, + ACTIONS(1967), 2, anon_sym_COMMA, anon_sym_RBRACE, - [41176] = 3, + [41152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3015), 1, anon_sym_LPAREN2, - STATE(1435), 1, + STATE(1443), 1, sym_parenthesized_expression, - [41186] = 3, - ACTIONS(2247), 1, + [41162] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 1, - anon_sym_LF, - ACTIONS(3041), 1, - sym_preproc_arg, - [41196] = 2, - ACTIONS(2247), 1, + ACTIONS(1971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41170] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3043), 2, + ACTIONS(3041), 1, anon_sym_LF, + ACTIONS(3043), 1, sym_preproc_arg, - [41204] = 3, - ACTIONS(2247), 1, + [41180] = 3, + ACTIONS(2238), 1, sym_comment, ACTIONS(3045), 1, anon_sym_LF, ACTIONS(3047), 1, sym_preproc_arg, - [41214] = 3, + [41190] = 2, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(3049), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [41198] = 2, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(3051), 2, + anon_sym_LF, + sym_preproc_arg, + [41206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - STATE(1352), 1, - sym_argument_list, + ACTIONS(3053), 1, + sym_identifier, + STATE(1197), 1, + sym_attribute, + [41216] = 2, + ACTIONS(2238), 1, + sym_comment, + ACTIONS(3055), 2, + anon_sym_LF, + sym_preproc_arg, [41224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3021), 1, anon_sym_LPAREN2, - STATE(1320), 1, + STATE(319), 1, sym_parenthesized_expression, [41234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3015), 1, anon_sym_LPAREN2, - STATE(329), 1, + STATE(1328), 1, sym_parenthesized_expression, - [41244] = 2, + [41244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2892), 2, + ACTIONS(3021), 1, + anon_sym_LPAREN2, + STATE(354), 1, + sym_parenthesized_expression, + [41254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2898), 2, anon_sym_COMMA, anon_sym_RBRACE, - [41252] = 2, + [41262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 2, + ACTIONS(3057), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [41260] = 3, + [41270] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(115), 1, anon_sym_LBRACE, - STATE(93), 1, + STATE(85), 1, sym_compound_statement, - [41270] = 3, + [41280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3021), 1, anon_sym_LPAREN2, - STATE(327), 1, + STATE(352), 1, sym_parenthesized_expression, - [41280] = 3, + [41290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(3053), 1, sym_identifier, - STATE(1159), 1, + STATE(1166), 1, sym_attribute, - [41290] = 3, + [41300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LPAREN2, - STATE(1374), 1, + STATE(1382), 1, sym_argument_list, - [41300] = 3, + [41310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, + ACTIONS(3059), 1, sym_identifier, - ACTIONS(3055), 1, + ACTIONS(3061), 1, anon_sym_LPAREN2, - [41310] = 3, + [41320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3015), 1, anon_sym_LPAREN2, - STATE(1242), 1, + STATE(1251), 1, sym_parenthesized_expression, - [41320] = 2, - ACTIONS(2247), 1, + [41330] = 2, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3057), 2, + ACTIONS(3063), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [41328] = 3, + [41338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(3053), 1, sym_identifier, - STATE(1222), 1, + STATE(1227), 1, sym_attribute, - [41338] = 2, - ACTIONS(2247), 1, + [41348] = 2, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3059), 2, + ACTIONS(3065), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [41346] = 3, - ACTIONS(2247), 1, + [41356] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3061), 1, + ACTIONS(3067), 1, anon_sym_LF, - ACTIONS(3063), 1, + ACTIONS(3069), 1, sym_preproc_arg, - [41356] = 2, + [41366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 2, + ACTIONS(3071), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [41364] = 3, - ACTIONS(2247), 1, + [41374] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3073), 1, anon_sym_LF, - ACTIONS(3069), 1, + ACTIONS(3075), 1, sym_preproc_arg, - [41374] = 3, - ACTIONS(2247), 1, + [41384] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(3077), 1, anon_sym_LF, - ACTIONS(3073), 1, + ACTIONS(3079), 1, sym_preproc_arg, - [41384] = 3, + [41394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3021), 1, anon_sym_LPAREN2, - STATE(314), 1, + STATE(321), 1, sym_parenthesized_expression, - [41394] = 3, - ACTIONS(2247), 1, + [41404] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(3081), 1, anon_sym_LF, - ACTIONS(3077), 1, + ACTIONS(3083), 1, sym_preproc_arg, - [41404] = 3, - ACTIONS(2247), 1, + [41414] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3079), 1, + ACTIONS(3085), 1, anon_sym_LF, - ACTIONS(3081), 1, + ACTIONS(3087), 1, sym_preproc_arg, - [41414] = 3, + [41424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3015), 1, anon_sym_LPAREN2, - STATE(1217), 1, + STATE(1225), 1, sym_parenthesized_expression, - [41424] = 3, - ACTIONS(2247), 1, + [41434] = 3, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3083), 1, + ACTIONS(3089), 1, anon_sym_LF, - ACTIONS(3085), 1, + ACTIONS(3091), 1, sym_preproc_arg, - [41434] = 3, + [41444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_LPAREN2, - STATE(308), 1, - sym_parenthesized_expression, - [41444] = 3, + ACTIONS(1843), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [41452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3015), 1, anon_sym_LPAREN2, - STATE(1334), 1, + STATE(1342), 1, sym_parenthesized_expression, - [41454] = 3, + [41462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(3053), 1, sym_identifier, - STATE(1175), 1, + STATE(1182), 1, sym_attribute, - [41464] = 3, + [41472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(2759), 1, sym_identifier, - STATE(1186), 1, - sym_attribute, - [41474] = 3, + STATE(1249), 1, + sym_enumerator, + [41482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3015), 1, anon_sym_LPAREN2, - STATE(1224), 1, + STATE(1226), 1, sym_parenthesized_expression, - [41484] = 3, + [41492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3021), 1, anon_sym_LPAREN2, - STATE(347), 1, + STATE(333), 1, sym_parenthesized_expression, - [41494] = 2, - ACTIONS(2247), 1, - sym_comment, - ACTIONS(3087), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, [41502] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3093), 1, anon_sym_LF, [41509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - aux_sym_preproc_if_token2, + ACTIONS(1911), 1, + anon_sym_RPAREN, [41516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 1, + ACTIONS(1935), 1, anon_sym_RPAREN, [41523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 1, - anon_sym_RPAREN, + ACTIONS(3095), 1, + aux_sym_preproc_if_token2, [41530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 1, - aux_sym_preproc_if_token2, + ACTIONS(1895), 1, + anon_sym_SEMI, [41537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1941), 1, - anon_sym_RPAREN, + ACTIONS(3097), 1, + anon_sym_SEMI, [41544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1937), 1, anon_sym_RPAREN, [41551] = 2, - ACTIONS(3), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3095), 1, - anon_sym_SEMI, + ACTIONS(2952), 1, + anon_sym_LF, [41558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1941), 1, anon_sym_RPAREN, [41565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, + ACTIONS(3099), 1, sym_identifier, [41572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + ACTIONS(1949), 1, anon_sym_RPAREN, [41579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_RBRACE, [41586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, - aux_sym_preproc_if_token2, + ACTIONS(3101), 1, + anon_sym_SEMI, [41593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, + ACTIONS(1963), 1, anon_sym_RPAREN, [41600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(3103), 1, anon_sym_SEMI, [41607] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2960), 1, + ACTIONS(3105), 1, anon_sym_LF, [41614] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3101), 1, + ACTIONS(3107), 1, anon_sym_LF, [41621] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(3109), 1, anon_sym_LF, [41628] = 2, - ACTIONS(2247), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, - anon_sym_LF, + ACTIONS(3111), 1, + aux_sym_preproc_if_token2, [41635] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3107), 1, + ACTIONS(3113), 1, anon_sym_LF, [41642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 1, + ACTIONS(3115), 1, aux_sym_preproc_if_token2, [41649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(3117), 1, aux_sym_preproc_if_token2, [41656] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3113), 1, + ACTIONS(3119), 1, anon_sym_LF, [41663] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3121), 1, anon_sym_LF, [41670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, - aux_sym_preproc_if_token2, + ACTIONS(1903), 1, + anon_sym_SEMI, [41677] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(3123), 1, anon_sym_LF, [41684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 1, + ACTIONS(3125), 1, anon_sym_SEMI, [41691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, - anon_sym_SEMI, + ACTIONS(3127), 1, + anon_sym_COLON, [41698] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3129), 1, anon_sym_LF, [41705] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3131), 1, anon_sym_LF, [41712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3133), 1, anon_sym_SEMI, [41719] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(3135), 1, anon_sym_LF, [41726] = 2, - ACTIONS(3), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3131), 1, - anon_sym_SEMI, + ACTIONS(3137), 1, + anon_sym_LF, [41733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 1, + ACTIONS(3139), 1, sym_identifier, [41740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(3141), 1, sym_identifier, [41747] = 2, - ACTIONS(3), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3137), 1, - anon_sym_SEMI, + ACTIONS(3143), 1, + anon_sym_LF, [41754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 1, - anon_sym_COLON, + ACTIONS(3145), 1, + aux_sym_preproc_if_token2, [41761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, - aux_sym_preproc_if_token2, + ACTIONS(1885), 1, + anon_sym_RPAREN, [41768] = 2, - ACTIONS(2247), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_LF, + ACTIONS(1909), 1, + anon_sym_RPAREN, [41775] = 2, - ACTIONS(2247), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 1, - anon_sym_LF, + ACTIONS(1929), 1, + anon_sym_RPAREN, [41782] = 2, ACTIONS(3), 1, sym_comment, @@ -71576,18 +72225,18 @@ static const uint16_t ts_small_parse_table[] = { [41789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, - anon_sym_RPAREN, + ACTIONS(3149), 1, + aux_sym_preproc_if_token2, [41796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1965), 1, + ACTIONS(1901), 1, anon_sym_RPAREN, [41803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, - aux_sym_preproc_if_token2, + ACTIONS(1881), 1, + anon_sym_RPAREN, [41810] = 2, ACTIONS(3), 1, sym_comment, @@ -71596,552 +72245,552 @@ static const uint16_t ts_small_parse_table[] = { [41817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1939), 1, + ACTIONS(1871), 1, anon_sym_RPAREN, [41824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1911), 1, + ACTIONS(1921), 1, anon_sym_RPAREN, [41831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - anon_sym_RPAREN, + ACTIONS(3153), 1, + anon_sym_SEMI, [41838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 1, - anon_sym_SEMI, + ACTIONS(3155), 1, + aux_sym_preproc_if_token2, [41845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3157), 1, aux_sym_preproc_if_token2, [41852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(3159), 1, aux_sym_preproc_if_token2, [41859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3161), 1, aux_sym_preproc_if_token2, [41866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 1, + ACTIONS(3163), 1, anon_sym_SEMI, [41873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3165), 1, anon_sym_SEMI, [41880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 1, + ACTIONS(3167), 1, aux_sym_preproc_if_token2, [41887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_RPAREN, + ACTIONS(3169), 1, + anon_sym_STAR, [41894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - anon_sym_STAR, + ACTIONS(3171), 1, + anon_sym_SEMI, [41901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, - anon_sym_SEMI, + ACTIONS(1915), 1, + anon_sym_RPAREN, [41908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_RPAREN, + ACTIONS(3173), 1, + aux_sym_preproc_if_token2, [41915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3175), 1, anon_sym_SEMI, [41922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1943), 1, anon_sym_RPAREN, [41929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3177), 1, aux_sym_preproc_if_token2, [41936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, + ACTIONS(1955), 1, anon_sym_RPAREN, [41943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3179), 1, aux_sym_preproc_if_token2, [41950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_RPAREN, [41957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3181), 1, sym_identifier, [41964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3183), 1, aux_sym_preproc_if_token2, [41971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3185), 1, anon_sym_SEMI, [41978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3187), 1, sym_identifier, [41985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3189), 1, anon_sym_SEMI, [41992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3191), 1, aux_sym_preproc_if_token2, [41999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3193), 1, aux_sym_preproc_if_token2, [42006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(3195), 1, anon_sym_RPAREN, [42013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3197), 1, anon_sym_RPAREN, [42020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3199), 1, aux_sym_preproc_if_token2, [42027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 1, + ACTIONS(1969), 1, anon_sym_RPAREN, [42034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3201), 1, aux_sym_preproc_if_token2, [42041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3203), 1, aux_sym_preproc_if_token2, [42048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3205), 1, anon_sym_RPAREN, [42055] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3207), 1, anon_sym_LF, [42062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3209), 1, aux_sym_preproc_if_token2, [42069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(3211), 1, aux_sym_preproc_if_token2, [42076] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3213), 1, anon_sym_LF, [42083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3215), 1, aux_sym_preproc_if_token2, [42090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(3217), 1, sym_identifier, [42097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(3219), 1, anon_sym_STAR, [42104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3217), 1, + ACTIONS(3221), 1, anon_sym_SQUOTE, [42111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(3223), 1, anon_sym_RPAREN, [42118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(3225), 1, anon_sym_SEMI, [42125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, + ACTIONS(3227), 1, anon_sym_RPAREN, [42132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1939), 1, anon_sym_SEMI, [42139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1927), 1, + ACTIONS(1875), 1, anon_sym_SEMI, [42146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3229), 1, sym_identifier, [42153] = 2, - ACTIONS(1442), 1, + ACTIONS(1448), 1, anon_sym_LF, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, [42160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(3231), 1, sym_identifier, [42167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 1, + ACTIONS(3233), 1, sym_identifier, [42174] = 2, - ACTIONS(1438), 1, + ACTIONS(1444), 1, anon_sym_LF, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, [42181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 1, + ACTIONS(2893), 1, anon_sym_RBRACE, [42188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3231), 1, + ACTIONS(3235), 1, anon_sym_COLON, [42195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3237), 1, anon_sym_RPAREN, [42202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 1, + ACTIONS(3239), 1, anon_sym_RPAREN, [42209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3237), 1, + ACTIONS(3241), 1, sym_identifier, [42216] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3243), 1, anon_sym_LF, [42223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3245), 1, anon_sym_SEMI, [42230] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, ACTIONS(2868), 1, anon_sym_LF, [42237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1899), 1, anon_sym_SEMI, [42244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3247), 1, sym_identifier, [42251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 1, + ACTIONS(3249), 1, anon_sym_RPAREN, [42258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3251), 1, anon_sym_SEMI, [42265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3253), 1, anon_sym_STAR, [42272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, + ACTIONS(3255), 1, sym_identifier, [42279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, + ACTIONS(1923), 1, anon_sym_SEMI, [42286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 1, + ACTIONS(3257), 1, anon_sym_SEMI, [42293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 1, + ACTIONS(3259), 1, anon_sym_SEMI, [42300] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(2943), 1, anon_sym_LF, [42307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 1, + ACTIONS(3261), 1, anon_sym_COLON, [42314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 1, + ACTIONS(3263), 1, aux_sym_preproc_if_token2, [42321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3265), 1, sym_identifier, [42328] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3263), 1, + ACTIONS(3267), 1, anon_sym_LF, [42335] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3269), 1, anon_sym_LF, [42342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(3271), 1, sym_identifier, [42349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3273), 1, sym_identifier, [42356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1935), 1, + ACTIONS(1907), 1, anon_sym_RPAREN, [42363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, - anon_sym_RPAREN, + ACTIONS(1883), 1, + anon_sym_SEMI, [42370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(3275), 1, sym_identifier, [42377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(3277), 1, sym_identifier, [42384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3279), 1, anon_sym_SEMI, [42391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, + ACTIONS(3281), 1, anon_sym_STAR, [42398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3283), 1, anon_sym_SQUOTE, [42405] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3283), 1, + ACTIONS(3285), 1, anon_sym_LF, [42412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3287), 1, anon_sym_SQUOTE, [42419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1947), 1, + ACTIONS(1919), 1, anon_sym_RPAREN, [42426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 1, + ACTIONS(3289), 1, anon_sym_SEMI, [42433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(1931), 1, anon_sym_SEMI, [42440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3291), 1, anon_sym_while, [42447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3293), 1, aux_sym_preproc_if_token2, [42454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3295), 1, aux_sym_preproc_if_token2, [42461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, + ACTIONS(1927), 1, anon_sym_RPAREN, [42468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 1, + ACTIONS(3297), 1, sym_identifier, [42475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3299), 1, sym_identifier, [42482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 1, + ACTIONS(3301), 1, sym_identifier, [42489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3303), 1, anon_sym_RPAREN, [42496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 1, + ACTIONS(3305), 1, sym_identifier, [42503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, + ACTIONS(1877), 1, anon_sym_RPAREN, [42510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(1897), 1, anon_sym_RPAREN, [42517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3307), 1, anon_sym_SEMI, [42524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, + ACTIONS(3309), 1, anon_sym_RPAREN, [42531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 1, + ACTIONS(1913), 1, anon_sym_RPAREN, [42538] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3311), 1, anon_sym_LF, [42545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3313), 1, anon_sym_RPAREN, [42552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3315), 1, aux_sym_preproc_if_token2, [42559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3317), 1, anon_sym_while, [42566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, - anon_sym_SEMI, + ACTIONS(3319), 1, + anon_sym_RPAREN, [42573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3321), 1, aux_sym_preproc_if_token2, [42580] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(2870), 1, anon_sym_LF, [42587] = 2, ACTIONS(3), 1, @@ -72151,1213 +72800,1213 @@ static const uint16_t ts_small_parse_table[] = { [42594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(1947), 1, anon_sym_SEMI, [42601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3323), 1, ts_builtin_sym_end, [42608] = 2, - ACTIONS(2247), 1, + ACTIONS(2238), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3325), 1, anon_sym_LF, [42615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 1, + ACTIONS(3327), 1, aux_sym_preproc_if_token2, [42622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3329), 1, sym_identifier, [42629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3331), 1, anon_sym_SEMI, [42636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_while, [42643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3335), 1, anon_sym_SEMI, [42650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3337), 1, anon_sym_LPAREN2, [42657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(1933), 1, anon_sym_RPAREN, [42664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1959), 1, + ACTIONS(1917), 1, anon_sym_SEMI, [42671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3339), 1, anon_sym_COLON, [42678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(3341), 1, anon_sym_SEMI, [42685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 1, + ACTIONS(1873), 1, anon_sym_RPAREN, [42692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3343), 1, anon_sym_SEMI, [42699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(3345), 1, anon_sym_while, [42706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 1, + ACTIONS(3347), 1, anon_sym_SEMI, [42713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(3349), 1, anon_sym_RPAREN, [42720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1961), 1, + ACTIONS(1879), 1, anon_sym_SEMI, [42727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, + ACTIONS(3351), 1, anon_sym_LPAREN2, [42734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3353), 1, aux_sym_preproc_if_token2, [42741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3355), 1, anon_sym_LPAREN2, [42748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3357), 1, anon_sym_LPAREN2, [42755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 1, + ACTIONS(3359), 1, aux_sym_preproc_if_token2, [42762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_LPAREN2, [42769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 1, + ACTIONS(3363), 1, sym_identifier, [42776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3365), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(378)] = 0, - [SMALL_STATE(379)] = 107, - [SMALL_STATE(380)] = 178, - [SMALL_STATE(381)] = 249, - [SMALL_STATE(382)] = 321, - [SMALL_STATE(383)] = 439, - [SMALL_STATE(384)] = 547, - [SMALL_STATE(385)] = 655, - [SMALL_STATE(386)] = 763, - [SMALL_STATE(387)] = 871, - [SMALL_STATE(388)] = 979, - [SMALL_STATE(389)] = 1087, - [SMALL_STATE(390)] = 1195, - [SMALL_STATE(391)] = 1303, - [SMALL_STATE(392)] = 1411, - [SMALL_STATE(393)] = 1519, - [SMALL_STATE(394)] = 1627, - [SMALL_STATE(395)] = 1735, - [SMALL_STATE(396)] = 1843, - [SMALL_STATE(397)] = 1951, - [SMALL_STATE(398)] = 2026, - [SMALL_STATE(399)] = 2103, - [SMALL_STATE(400)] = 2180, - [SMALL_STATE(401)] = 2255, - [SMALL_STATE(402)] = 2330, - [SMALL_STATE(403)] = 2407, - [SMALL_STATE(404)] = 2482, - [SMALL_STATE(405)] = 2559, - [SMALL_STATE(406)] = 2659, - [SMALL_STATE(407)] = 2759, - [SMALL_STATE(408)] = 2831, - [SMALL_STATE(409)] = 2928, - [SMALL_STATE(410)] = 3025, - [SMALL_STATE(411)] = 3123, - [SMALL_STATE(412)] = 3217, - [SMALL_STATE(413)] = 3315, - [SMALL_STATE(414)] = 3413, - [SMALL_STATE(415)] = 3511, - [SMALL_STATE(416)] = 3609, - [SMALL_STATE(417)] = 3707, - [SMALL_STATE(418)] = 3768, - [SMALL_STATE(419)] = 3859, - [SMALL_STATE(420)] = 3920, - [SMALL_STATE(421)] = 3981, - [SMALL_STATE(422)] = 4072, - [SMALL_STATE(423)] = 4163, - [SMALL_STATE(424)] = 4254, - [SMALL_STATE(425)] = 4345, - [SMALL_STATE(426)] = 4436, - [SMALL_STATE(427)] = 4527, - [SMALL_STATE(428)] = 4618, - [SMALL_STATE(429)] = 4709, - [SMALL_STATE(430)] = 4800, - [SMALL_STATE(431)] = 4902, - [SMALL_STATE(432)] = 4993, - [SMALL_STATE(433)] = 5084, - [SMALL_STATE(434)] = 5175, - [SMALL_STATE(435)] = 5230, - [SMALL_STATE(436)] = 5285, - [SMALL_STATE(437)] = 5376, - [SMALL_STATE(438)] = 5458, - [SMALL_STATE(439)] = 5540, - [SMALL_STATE(440)] = 5622, - [SMALL_STATE(441)] = 5704, - [SMALL_STATE(442)] = 5786, - [SMALL_STATE(443)] = 5868, - [SMALL_STATE(444)] = 5950, - [SMALL_STATE(445)] = 6032, - [SMALL_STATE(446)] = 6114, - [SMALL_STATE(447)] = 6196, - [SMALL_STATE(448)] = 6278, - [SMALL_STATE(449)] = 6360, - [SMALL_STATE(450)] = 6442, - [SMALL_STATE(451)] = 6524, - [SMALL_STATE(452)] = 6606, - [SMALL_STATE(453)] = 6688, - [SMALL_STATE(454)] = 6770, - [SMALL_STATE(455)] = 6852, - [SMALL_STATE(456)] = 6934, - [SMALL_STATE(457)] = 7016, - [SMALL_STATE(458)] = 7098, - [SMALL_STATE(459)] = 7180, - [SMALL_STATE(460)] = 7262, - [SMALL_STATE(461)] = 7344, - [SMALL_STATE(462)] = 7426, - [SMALL_STATE(463)] = 7508, - [SMALL_STATE(464)] = 7590, - [SMALL_STATE(465)] = 7672, - [SMALL_STATE(466)] = 7754, - [SMALL_STATE(467)] = 7836, - [SMALL_STATE(468)] = 7918, - [SMALL_STATE(469)] = 8000, - [SMALL_STATE(470)] = 8082, - [SMALL_STATE(471)] = 8164, - [SMALL_STATE(472)] = 8243, - [SMALL_STATE(473)] = 8322, - [SMALL_STATE(474)] = 8373, - [SMALL_STATE(475)] = 8452, - [SMALL_STATE(476)] = 8531, - [SMALL_STATE(477)] = 8610, - [SMALL_STATE(478)] = 8689, - [SMALL_STATE(479)] = 8768, - [SMALL_STATE(480)] = 8847, - [SMALL_STATE(481)] = 8926, - [SMALL_STATE(482)] = 9005, - [SMALL_STATE(483)] = 9084, - [SMALL_STATE(484)] = 9163, - [SMALL_STATE(485)] = 9242, - [SMALL_STATE(486)] = 9321, - [SMALL_STATE(487)] = 9400, - [SMALL_STATE(488)] = 9479, - [SMALL_STATE(489)] = 9558, - [SMALL_STATE(490)] = 9637, - [SMALL_STATE(491)] = 9716, - [SMALL_STATE(492)] = 9795, - [SMALL_STATE(493)] = 9874, - [SMALL_STATE(494)] = 9953, - [SMALL_STATE(495)] = 10032, - [SMALL_STATE(496)] = 10111, - [SMALL_STATE(497)] = 10190, - [SMALL_STATE(498)] = 10269, - [SMALL_STATE(499)] = 10348, - [SMALL_STATE(500)] = 10424, - [SMALL_STATE(501)] = 10474, - [SMALL_STATE(502)] = 10534, - [SMALL_STATE(503)] = 10618, - [SMALL_STATE(504)] = 10678, - [SMALL_STATE(505)] = 10754, - [SMALL_STATE(506)] = 10830, - [SMALL_STATE(507)] = 10906, - [SMALL_STATE(508)] = 10956, - [SMALL_STATE(509)] = 11032, - [SMALL_STATE(510)] = 11108, - [SMALL_STATE(511)] = 11168, - [SMALL_STATE(512)] = 11244, - [SMALL_STATE(513)] = 11294, - [SMALL_STATE(514)] = 11370, - [SMALL_STATE(515)] = 11446, - [SMALL_STATE(516)] = 11522, - [SMALL_STATE(517)] = 11598, - [SMALL_STATE(518)] = 11648, - [SMALL_STATE(519)] = 11724, - [SMALL_STATE(520)] = 11800, - [SMALL_STATE(521)] = 11876, - [SMALL_STATE(522)] = 11952, - [SMALL_STATE(523)] = 12028, - [SMALL_STATE(524)] = 12088, - [SMALL_STATE(525)] = 12146, - [SMALL_STATE(526)] = 12196, - [SMALL_STATE(527)] = 12272, - [SMALL_STATE(528)] = 12348, - [SMALL_STATE(529)] = 12424, - [SMALL_STATE(530)] = 12500, - [SMALL_STATE(531)] = 12576, - [SMALL_STATE(532)] = 12652, - [SMALL_STATE(533)] = 12728, - [SMALL_STATE(534)] = 12790, - [SMALL_STATE(535)] = 12866, - [SMALL_STATE(536)] = 12942, - [SMALL_STATE(537)] = 13006, - [SMALL_STATE(538)] = 13072, - [SMALL_STATE(539)] = 13148, - [SMALL_STATE(540)] = 13218, - [SMALL_STATE(541)] = 13294, - [SMALL_STATE(542)] = 13366, - [SMALL_STATE(543)] = 13442, - [SMALL_STATE(544)] = 13492, - [SMALL_STATE(545)] = 13568, - [SMALL_STATE(546)] = 13642, - [SMALL_STATE(547)] = 13718, - [SMALL_STATE(548)] = 13796, - [SMALL_STATE(549)] = 13872, - [SMALL_STATE(550)] = 13952, - [SMALL_STATE(551)] = 14014, - [SMALL_STATE(552)] = 14090, - [SMALL_STATE(553)] = 14166, - [SMALL_STATE(554)] = 14216, - [SMALL_STATE(555)] = 14266, - [SMALL_STATE(556)] = 14316, - [SMALL_STATE(557)] = 14366, - [SMALL_STATE(558)] = 14442, - [SMALL_STATE(559)] = 14518, - [SMALL_STATE(560)] = 14600, - [SMALL_STATE(561)] = 14676, - [SMALL_STATE(562)] = 14752, - [SMALL_STATE(563)] = 14828, - [SMALL_STATE(564)] = 14904, - [SMALL_STATE(565)] = 14980, - [SMALL_STATE(566)] = 15056, - [SMALL_STATE(567)] = 15132, - [SMALL_STATE(568)] = 15198, - [SMALL_STATE(569)] = 15274, - [SMALL_STATE(570)] = 15350, - [SMALL_STATE(571)] = 15426, - [SMALL_STATE(572)] = 15502, - [SMALL_STATE(573)] = 15578, - [SMALL_STATE(574)] = 15654, - [SMALL_STATE(575)] = 15704, - [SMALL_STATE(576)] = 15780, - [SMALL_STATE(577)] = 15856, - [SMALL_STATE(578)] = 15932, - [SMALL_STATE(579)] = 15982, - [SMALL_STATE(580)] = 16058, - [SMALL_STATE(581)] = 16134, - [SMALL_STATE(582)] = 16184, - [SMALL_STATE(583)] = 16260, - [SMALL_STATE(584)] = 16336, - [SMALL_STATE(585)] = 16412, - [SMALL_STATE(586)] = 16488, - [SMALL_STATE(587)] = 16564, - [SMALL_STATE(588)] = 16640, - [SMALL_STATE(589)] = 16716, - [SMALL_STATE(590)] = 16792, - [SMALL_STATE(591)] = 16868, - [SMALL_STATE(592)] = 16944, - [SMALL_STATE(593)] = 16994, - [SMALL_STATE(594)] = 17044, - [SMALL_STATE(595)] = 17120, - [SMALL_STATE(596)] = 17196, - [SMALL_STATE(597)] = 17272, - [SMALL_STATE(598)] = 17348, - [SMALL_STATE(599)] = 17424, - [SMALL_STATE(600)] = 17500, - [SMALL_STATE(601)] = 17576, - [SMALL_STATE(602)] = 17652, - [SMALL_STATE(603)] = 17728, - [SMALL_STATE(604)] = 17804, - [SMALL_STATE(605)] = 17880, - [SMALL_STATE(606)] = 17933, - [SMALL_STATE(607)] = 17986, - [SMALL_STATE(608)] = 18033, - [SMALL_STATE(609)] = 18086, - [SMALL_STATE(610)] = 18139, - [SMALL_STATE(611)] = 18192, - [SMALL_STATE(612)] = 18245, - [SMALL_STATE(613)] = 18292, - [SMALL_STATE(614)] = 18373, - [SMALL_STATE(615)] = 18435, - [SMALL_STATE(616)] = 18509, - [SMALL_STATE(617)] = 18589, - [SMALL_STATE(618)] = 18667, - [SMALL_STATE(619)] = 18725, - [SMALL_STATE(620)] = 18781, - [SMALL_STATE(621)] = 18841, - [SMALL_STATE(622)] = 18897, - [SMALL_STATE(623)] = 18951, - [SMALL_STATE(624)] = 19029, - [SMALL_STATE(625)] = 19091, - [SMALL_STATE(626)] = 19147, - [SMALL_STATE(627)] = 19223, - [SMALL_STATE(628)] = 19289, - [SMALL_STATE(629)] = 19345, - [SMALL_STATE(630)] = 19413, - [SMALL_STATE(631)] = 19483, - [SMALL_STATE(632)] = 19529, - [SMALL_STATE(633)] = 19601, - [SMALL_STATE(634)] = 19646, - [SMALL_STATE(635)] = 19695, - [SMALL_STATE(636)] = 19740, - [SMALL_STATE(637)] = 19785, - [SMALL_STATE(638)] = 19857, - [SMALL_STATE(639)] = 19913, - [SMALL_STATE(640)] = 19985, - [SMALL_STATE(641)] = 20057, - [SMALL_STATE(642)] = 20129, - [SMALL_STATE(643)] = 20198, - [SMALL_STATE(644)] = 20272, - [SMALL_STATE(645)] = 20316, - [SMALL_STATE(646)] = 20369, - [SMALL_STATE(647)] = 20436, - [SMALL_STATE(648)] = 20503, - [SMALL_STATE(649)] = 20572, - [SMALL_STATE(650)] = 20637, - [SMALL_STATE(651)] = 20700, - [SMALL_STATE(652)] = 20771, - [SMALL_STATE(653)] = 20832, - [SMALL_STATE(654)] = 20889, - [SMALL_STATE(655)] = 20962, - [SMALL_STATE(656)] = 21017, - [SMALL_STATE(657)] = 21056, - [SMALL_STATE(658)] = 21113, - [SMALL_STATE(659)] = 21151, - [SMALL_STATE(660)] = 21189, - [SMALL_STATE(661)] = 21226, - [SMALL_STATE(662)] = 21263, - [SMALL_STATE(663)] = 21300, - [SMALL_STATE(664)] = 21337, - [SMALL_STATE(665)] = 21374, - [SMALL_STATE(666)] = 21411, - [SMALL_STATE(667)] = 21486, - [SMALL_STATE(668)] = 21523, - [SMALL_STATE(669)] = 21560, - [SMALL_STATE(670)] = 21597, - [SMALL_STATE(671)] = 21634, - [SMALL_STATE(672)] = 21671, - [SMALL_STATE(673)] = 21708, - [SMALL_STATE(674)] = 21745, - [SMALL_STATE(675)] = 21782, - [SMALL_STATE(676)] = 21819, - [SMALL_STATE(677)] = 21856, - [SMALL_STATE(678)] = 21893, - [SMALL_STATE(679)] = 21968, - [SMALL_STATE(680)] = 22005, - [SMALL_STATE(681)] = 22042, - [SMALL_STATE(682)] = 22079, - [SMALL_STATE(683)] = 22152, - [SMALL_STATE(684)] = 22189, - [SMALL_STATE(685)] = 22264, - [SMALL_STATE(686)] = 22301, - [SMALL_STATE(687)] = 22338, - [SMALL_STATE(688)] = 22375, - [SMALL_STATE(689)] = 22447, - [SMALL_STATE(690)] = 22519, - [SMALL_STATE(691)] = 22591, - [SMALL_STATE(692)] = 22663, - [SMALL_STATE(693)] = 22735, - [SMALL_STATE(694)] = 22805, - [SMALL_STATE(695)] = 22875, - [SMALL_STATE(696)] = 22947, - [SMALL_STATE(697)] = 22995, - [SMALL_STATE(698)] = 23043, - [SMALL_STATE(699)] = 23115, - [SMALL_STATE(700)] = 23187, - [SMALL_STATE(701)] = 23235, - [SMALL_STATE(702)] = 23283, - [SMALL_STATE(703)] = 23319, - [SMALL_STATE(704)] = 23389, - [SMALL_STATE(705)] = 23425, - [SMALL_STATE(706)] = 23497, - [SMALL_STATE(707)] = 23569, - [SMALL_STATE(708)] = 23641, - [SMALL_STATE(709)] = 23713, - [SMALL_STATE(710)] = 23785, - [SMALL_STATE(711)] = 23857, - [SMALL_STATE(712)] = 23929, - [SMALL_STATE(713)] = 24001, - [SMALL_STATE(714)] = 24073, - [SMALL_STATE(715)] = 24145, - [SMALL_STATE(716)] = 24215, - [SMALL_STATE(717)] = 24287, - [SMALL_STATE(718)] = 24359, - [SMALL_STATE(719)] = 24431, - [SMALL_STATE(720)] = 24501, - [SMALL_STATE(721)] = 24573, - [SMALL_STATE(722)] = 24645, - [SMALL_STATE(723)] = 24717, - [SMALL_STATE(724)] = 24789, - [SMALL_STATE(725)] = 24861, - [SMALL_STATE(726)] = 24933, - [SMALL_STATE(727)] = 25005, - [SMALL_STATE(728)] = 25077, - [SMALL_STATE(729)] = 25149, - [SMALL_STATE(730)] = 25221, - [SMALL_STATE(731)] = 25293, - [SMALL_STATE(732)] = 25365, - [SMALL_STATE(733)] = 25437, - [SMALL_STATE(734)] = 25509, - [SMALL_STATE(735)] = 25581, - [SMALL_STATE(736)] = 25653, - [SMALL_STATE(737)] = 25725, - [SMALL_STATE(738)] = 25760, - [SMALL_STATE(739)] = 25799, - [SMALL_STATE(740)] = 25834, - [SMALL_STATE(741)] = 25903, - [SMALL_STATE(742)] = 25972, - [SMALL_STATE(743)] = 26041, - [SMALL_STATE(744)] = 26110, - [SMALL_STATE(745)] = 26179, - [SMALL_STATE(746)] = 26248, - [SMALL_STATE(747)] = 26317, - [SMALL_STATE(748)] = 26386, - [SMALL_STATE(749)] = 26421, - [SMALL_STATE(750)] = 26456, - [SMALL_STATE(751)] = 26491, - [SMALL_STATE(752)] = 26526, - [SMALL_STATE(753)] = 26595, - [SMALL_STATE(754)] = 26630, - [SMALL_STATE(755)] = 26665, - [SMALL_STATE(756)] = 26700, - [SMALL_STATE(757)] = 26735, - [SMALL_STATE(758)] = 26774, - [SMALL_STATE(759)] = 26843, - [SMALL_STATE(760)] = 26878, - [SMALL_STATE(761)] = 26913, - [SMALL_STATE(762)] = 26948, - [SMALL_STATE(763)] = 26983, - [SMALL_STATE(764)] = 27052, - [SMALL_STATE(765)] = 27087, - [SMALL_STATE(766)] = 27122, - [SMALL_STATE(767)] = 27191, - [SMALL_STATE(768)] = 27234, - [SMALL_STATE(769)] = 27269, - [SMALL_STATE(770)] = 27304, - [SMALL_STATE(771)] = 27339, - [SMALL_STATE(772)] = 27408, - [SMALL_STATE(773)] = 27443, - [SMALL_STATE(774)] = 27482, - [SMALL_STATE(775)] = 27517, - [SMALL_STATE(776)] = 27586, - [SMALL_STATE(777)] = 27655, - [SMALL_STATE(778)] = 27724, - [SMALL_STATE(779)] = 27759, - [SMALL_STATE(780)] = 27810, - [SMALL_STATE(781)] = 27849, - [SMALL_STATE(782)] = 27918, - [SMALL_STATE(783)] = 27953, - [SMALL_STATE(784)] = 28022, - [SMALL_STATE(785)] = 28057, - [SMALL_STATE(786)] = 28110, - [SMALL_STATE(787)] = 28145, - [SMALL_STATE(788)] = 28214, - [SMALL_STATE(789)] = 28271, - [SMALL_STATE(790)] = 28306, - [SMALL_STATE(791)] = 28375, - [SMALL_STATE(792)] = 28414, - [SMALL_STATE(793)] = 28449, - [SMALL_STATE(794)] = 28484, - [SMALL_STATE(795)] = 28553, - [SMALL_STATE(796)] = 28622, - [SMALL_STATE(797)] = 28657, - [SMALL_STATE(798)] = 28716, - [SMALL_STATE(799)] = 28751, - [SMALL_STATE(800)] = 28812, - [SMALL_STATE(801)] = 28875, - [SMALL_STATE(802)] = 28938, - [SMALL_STATE(803)] = 29007, - [SMALL_STATE(804)] = 29042, - [SMALL_STATE(805)] = 29111, - [SMALL_STATE(806)] = 29180, - [SMALL_STATE(807)] = 29245, - [SMALL_STATE(808)] = 29280, - [SMALL_STATE(809)] = 29315, - [SMALL_STATE(810)] = 29350, - [SMALL_STATE(811)] = 29403, - [SMALL_STATE(812)] = 29438, - [SMALL_STATE(813)] = 29507, - [SMALL_STATE(814)] = 29556, - [SMALL_STATE(815)] = 29625, - [SMALL_STATE(816)] = 29694, - [SMALL_STATE(817)] = 29763, - [SMALL_STATE(818)] = 29798, - [SMALL_STATE(819)] = 29865, - [SMALL_STATE(820)] = 29934, - [SMALL_STATE(821)] = 30003, - [SMALL_STATE(822)] = 30072, - [SMALL_STATE(823)] = 30141, - [SMALL_STATE(824)] = 30176, - [SMALL_STATE(825)] = 30245, - [SMALL_STATE(826)] = 30280, - [SMALL_STATE(827)] = 30315, - [SMALL_STATE(828)] = 30350, - [SMALL_STATE(829)] = 30408, - [SMALL_STATE(830)] = 30463, - [SMALL_STATE(831)] = 30518, - [SMALL_STATE(832)] = 30573, - [SMALL_STATE(833)] = 30628, - [SMALL_STATE(834)] = 30683, - [SMALL_STATE(835)] = 30738, - [SMALL_STATE(836)] = 30793, - [SMALL_STATE(837)] = 30848, - [SMALL_STATE(838)] = 30903, - [SMALL_STATE(839)] = 30958, - [SMALL_STATE(840)] = 31013, - [SMALL_STATE(841)] = 31068, - [SMALL_STATE(842)] = 31114, - [SMALL_STATE(843)] = 31160, - [SMALL_STATE(844)] = 31206, - [SMALL_STATE(845)] = 31252, - [SMALL_STATE(846)] = 31287, - [SMALL_STATE(847)] = 31322, - [SMALL_STATE(848)] = 31357, - [SMALL_STATE(849)] = 31408, - [SMALL_STATE(850)] = 31443, - [SMALL_STATE(851)] = 31478, - [SMALL_STATE(852)] = 31526, - [SMALL_STATE(853)] = 31574, - [SMALL_STATE(854)] = 31622, - [SMALL_STATE(855)] = 31670, - [SMALL_STATE(856)] = 31704, - [SMALL_STATE(857)] = 31752, - [SMALL_STATE(858)] = 31800, - [SMALL_STATE(859)] = 31848, - [SMALL_STATE(860)] = 31896, - [SMALL_STATE(861)] = 31944, - [SMALL_STATE(862)] = 31973, - [SMALL_STATE(863)] = 32004, - [SMALL_STATE(864)] = 32033, - [SMALL_STATE(865)] = 32062, - [SMALL_STATE(866)] = 32091, - [SMALL_STATE(867)] = 32120, - [SMALL_STATE(868)] = 32149, - [SMALL_STATE(869)] = 32204, - [SMALL_STATE(870)] = 32247, - [SMALL_STATE(871)] = 32276, - [SMALL_STATE(872)] = 32309, - [SMALL_STATE(873)] = 32338, - [SMALL_STATE(874)] = 32367, - [SMALL_STATE(875)] = 32396, - [SMALL_STATE(876)] = 32425, - [SMALL_STATE(877)] = 32454, - [SMALL_STATE(878)] = 32483, - [SMALL_STATE(879)] = 32512, - [SMALL_STATE(880)] = 32541, - [SMALL_STATE(881)] = 32570, - [SMALL_STATE(882)] = 32599, - [SMALL_STATE(883)] = 32654, - [SMALL_STATE(884)] = 32683, - [SMALL_STATE(885)] = 32726, - [SMALL_STATE(886)] = 32759, - [SMALL_STATE(887)] = 32788, - [SMALL_STATE(888)] = 32817, - [SMALL_STATE(889)] = 32846, - [SMALL_STATE(890)] = 32874, - [SMALL_STATE(891)] = 32914, - [SMALL_STATE(892)] = 32954, - [SMALL_STATE(893)] = 32982, - [SMALL_STATE(894)] = 33018, - [SMALL_STATE(895)] = 33066, - [SMALL_STATE(896)] = 33100, - [SMALL_STATE(897)] = 33140, - [SMALL_STATE(898)] = 33180, - [SMALL_STATE(899)] = 33220, - [SMALL_STATE(900)] = 33260, - [SMALL_STATE(901)] = 33288, - [SMALL_STATE(902)] = 33338, - [SMALL_STATE(903)] = 33366, - [SMALL_STATE(904)] = 33406, - [SMALL_STATE(905)] = 33446, - [SMALL_STATE(906)] = 33474, - [SMALL_STATE(907)] = 33514, - [SMALL_STATE(908)] = 33554, - [SMALL_STATE(909)] = 33582, - [SMALL_STATE(910)] = 33610, - [SMALL_STATE(911)] = 33650, - [SMALL_STATE(912)] = 33690, - [SMALL_STATE(913)] = 33730, - [SMALL_STATE(914)] = 33770, - [SMALL_STATE(915)] = 33798, - [SMALL_STATE(916)] = 33838, - [SMALL_STATE(917)] = 33878, - [SMALL_STATE(918)] = 33922, - [SMALL_STATE(919)] = 33962, - [SMALL_STATE(920)] = 34002, - [SMALL_STATE(921)] = 34042, - [SMALL_STATE(922)] = 34082, - [SMALL_STATE(923)] = 34122, - [SMALL_STATE(924)] = 34162, - [SMALL_STATE(925)] = 34202, - [SMALL_STATE(926)] = 34242, - [SMALL_STATE(927)] = 34282, - [SMALL_STATE(928)] = 34322, - [SMALL_STATE(929)] = 34362, - [SMALL_STATE(930)] = 34390, - [SMALL_STATE(931)] = 34430, - [SMALL_STATE(932)] = 34470, - [SMALL_STATE(933)] = 34510, - [SMALL_STATE(934)] = 34550, - [SMALL_STATE(935)] = 34582, - [SMALL_STATE(936)] = 34610, - [SMALL_STATE(937)] = 34650, - [SMALL_STATE(938)] = 34698, - [SMALL_STATE(939)] = 34740, - [SMALL_STATE(940)] = 34780, - [SMALL_STATE(941)] = 34826, - [SMALL_STATE(942)] = 34866, - [SMALL_STATE(943)] = 34906, - [SMALL_STATE(944)] = 34952, - [SMALL_STATE(945)] = 34995, - [SMALL_STATE(946)] = 35040, - [SMALL_STATE(947)] = 35085, - [SMALL_STATE(948)] = 35112, - [SMALL_STATE(949)] = 35141, - [SMALL_STATE(950)] = 35168, - [SMALL_STATE(951)] = 35195, - [SMALL_STATE(952)] = 35240, - [SMALL_STATE(953)] = 35285, - [SMALL_STATE(954)] = 35318, - [SMALL_STATE(955)] = 35363, - [SMALL_STATE(956)] = 35412, - [SMALL_STATE(957)] = 35439, - [SMALL_STATE(958)] = 35484, - [SMALL_STATE(959)] = 35511, - [SMALL_STATE(960)] = 35538, - [SMALL_STATE(961)] = 35565, - [SMALL_STATE(962)] = 35606, - [SMALL_STATE(963)] = 35655, - [SMALL_STATE(964)] = 35682, - [SMALL_STATE(965)] = 35709, - [SMALL_STATE(966)] = 35748, - [SMALL_STATE(967)] = 35785, - [SMALL_STATE(968)] = 35820, - [SMALL_STATE(969)] = 35853, - [SMALL_STATE(970)] = 35898, - [SMALL_STATE(971)] = 35943, - [SMALL_STATE(972)] = 35970, - [SMALL_STATE(973)] = 36015, - [SMALL_STATE(974)] = 36046, - [SMALL_STATE(975)] = 36091, - [SMALL_STATE(976)] = 36130, - [SMALL_STATE(977)] = 36169, - [SMALL_STATE(978)] = 36208, - [SMALL_STATE(979)] = 36247, - [SMALL_STATE(980)] = 36286, - [SMALL_STATE(981)] = 36325, - [SMALL_STATE(982)] = 36364, - [SMALL_STATE(983)] = 36403, - [SMALL_STATE(984)] = 36442, - [SMALL_STATE(985)] = 36480, - [SMALL_STATE(986)] = 36512, - [SMALL_STATE(987)] = 36550, - [SMALL_STATE(988)] = 36588, - [SMALL_STATE(989)] = 36626, - [SMALL_STATE(990)] = 36664, - [SMALL_STATE(991)] = 36702, - [SMALL_STATE(992)] = 36733, - [SMALL_STATE(993)] = 36771, - [SMALL_STATE(994)] = 36809, - [SMALL_STATE(995)] = 36847, - [SMALL_STATE(996)] = 36868, - [SMALL_STATE(997)] = 36889, - [SMALL_STATE(998)] = 36921, - [SMALL_STATE(999)] = 36953, - [SMALL_STATE(1000)] = 36991, - [SMALL_STATE(1001)] = 37023, - [SMALL_STATE(1002)] = 37061, - [SMALL_STATE(1003)] = 37093, - [SMALL_STATE(1004)] = 37131, - [SMALL_STATE(1005)] = 37163, - [SMALL_STATE(1006)] = 37201, - [SMALL_STATE(1007)] = 37233, - [SMALL_STATE(1008)] = 37265, - [SMALL_STATE(1009)] = 37297, - [SMALL_STATE(1010)] = 37329, - [SMALL_STATE(1011)] = 37352, - [SMALL_STATE(1012)] = 37381, - [SMALL_STATE(1013)] = 37410, - [SMALL_STATE(1014)] = 37437, - [SMALL_STATE(1015)] = 37466, - [SMALL_STATE(1016)] = 37495, - [SMALL_STATE(1017)] = 37524, - [SMALL_STATE(1018)] = 37553, - [SMALL_STATE(1019)] = 37588, - [SMALL_STATE(1020)] = 37617, - [SMALL_STATE(1021)] = 37646, - [SMALL_STATE(1022)] = 37669, - [SMALL_STATE(1023)] = 37698, - [SMALL_STATE(1024)] = 37727, - [SMALL_STATE(1025)] = 37756, - [SMALL_STATE(1026)] = 37783, - [SMALL_STATE(1027)] = 37812, - [SMALL_STATE(1028)] = 37847, - [SMALL_STATE(1029)] = 37876, - [SMALL_STATE(1030)] = 37903, - [SMALL_STATE(1031)] = 37926, - [SMALL_STATE(1032)] = 37961, - [SMALL_STATE(1033)] = 37990, - [SMALL_STATE(1034)] = 38019, - [SMALL_STATE(1035)] = 38042, - [SMALL_STATE(1036)] = 38071, - [SMALL_STATE(1037)] = 38100, - [SMALL_STATE(1038)] = 38127, - [SMALL_STATE(1039)] = 38159, - [SMALL_STATE(1040)] = 38191, - [SMALL_STATE(1041)] = 38223, - [SMALL_STATE(1042)] = 38249, - [SMALL_STATE(1043)] = 38281, - [SMALL_STATE(1044)] = 38299, - [SMALL_STATE(1045)] = 38321, - [SMALL_STATE(1046)] = 38347, - [SMALL_STATE(1047)] = 38365, - [SMALL_STATE(1048)] = 38391, - [SMALL_STATE(1049)] = 38409, - [SMALL_STATE(1050)] = 38435, - [SMALL_STATE(1051)] = 38464, - [SMALL_STATE(1052)] = 38485, - [SMALL_STATE(1053)] = 38506, - [SMALL_STATE(1054)] = 38535, - [SMALL_STATE(1055)] = 38562, - [SMALL_STATE(1056)] = 38587, - [SMALL_STATE(1057)] = 38612, - [SMALL_STATE(1058)] = 38641, - [SMALL_STATE(1059)] = 38670, - [SMALL_STATE(1060)] = 38695, - [SMALL_STATE(1061)] = 38716, - [SMALL_STATE(1062)] = 38737, - [SMALL_STATE(1063)] = 38762, - [SMALL_STATE(1064)] = 38791, - [SMALL_STATE(1065)] = 38812, - [SMALL_STATE(1066)] = 38837, - [SMALL_STATE(1067)] = 38866, - [SMALL_STATE(1068)] = 38895, - [SMALL_STATE(1069)] = 38924, - [SMALL_STATE(1070)] = 38940, - [SMALL_STATE(1071)] = 38964, - [SMALL_STATE(1072)] = 38990, - [SMALL_STATE(1073)] = 39006, - [SMALL_STATE(1074)] = 39030, - [SMALL_STATE(1075)] = 39056, - [SMALL_STATE(1076)] = 39072, - [SMALL_STATE(1077)] = 39098, - [SMALL_STATE(1078)] = 39114, - [SMALL_STATE(1079)] = 39130, - [SMALL_STATE(1080)] = 39156, - [SMALL_STATE(1081)] = 39176, - [SMALL_STATE(1082)] = 39192, - [SMALL_STATE(1083)] = 39207, - [SMALL_STATE(1084)] = 39222, - [SMALL_STATE(1085)] = 39245, - [SMALL_STATE(1086)] = 39260, - [SMALL_STATE(1087)] = 39275, - [SMALL_STATE(1088)] = 39290, - [SMALL_STATE(1089)] = 39313, - [SMALL_STATE(1090)] = 39328, - [SMALL_STATE(1091)] = 39343, - [SMALL_STATE(1092)] = 39358, - [SMALL_STATE(1093)] = 39381, - [SMALL_STATE(1094)] = 39395, - [SMALL_STATE(1095)] = 39409, - [SMALL_STATE(1096)] = 39423, - [SMALL_STATE(1097)] = 39437, - [SMALL_STATE(1098)] = 39455, - [SMALL_STATE(1099)] = 39469, - [SMALL_STATE(1100)] = 39483, - [SMALL_STATE(1101)] = 39501, - [SMALL_STATE(1102)] = 39515, - [SMALL_STATE(1103)] = 39529, - [SMALL_STATE(1104)] = 39546, - [SMALL_STATE(1105)] = 39565, - [SMALL_STATE(1106)] = 39582, - [SMALL_STATE(1107)] = 39601, - [SMALL_STATE(1108)] = 39618, - [SMALL_STATE(1109)] = 39637, - [SMALL_STATE(1110)] = 39656, - [SMALL_STATE(1111)] = 39673, - [SMALL_STATE(1112)] = 39692, - [SMALL_STATE(1113)] = 39708, - [SMALL_STATE(1114)] = 39724, - [SMALL_STATE(1115)] = 39734, - [SMALL_STATE(1116)] = 39750, - [SMALL_STATE(1117)] = 39766, - [SMALL_STATE(1118)] = 39782, - [SMALL_STATE(1119)] = 39792, - [SMALL_STATE(1120)] = 39806, - [SMALL_STATE(1121)] = 39822, - [SMALL_STATE(1122)] = 39838, - [SMALL_STATE(1123)] = 39854, - [SMALL_STATE(1124)] = 39870, - [SMALL_STATE(1125)] = 39886, - [SMALL_STATE(1126)] = 39896, - [SMALL_STATE(1127)] = 39912, - [SMALL_STATE(1128)] = 39922, - [SMALL_STATE(1129)] = 39938, - [SMALL_STATE(1130)] = 39954, - [SMALL_STATE(1131)] = 39964, - [SMALL_STATE(1132)] = 39974, - [SMALL_STATE(1133)] = 39984, - [SMALL_STATE(1134)] = 39994, - [SMALL_STATE(1135)] = 40004, - [SMALL_STATE(1136)] = 40020, - [SMALL_STATE(1137)] = 40030, - [SMALL_STATE(1138)] = 40046, - [SMALL_STATE(1139)] = 40056, - [SMALL_STATE(1140)] = 40066, - [SMALL_STATE(1141)] = 40082, - [SMALL_STATE(1142)] = 40098, - [SMALL_STATE(1143)] = 40114, - [SMALL_STATE(1144)] = 40128, - [SMALL_STATE(1145)] = 40144, - [SMALL_STATE(1146)] = 40160, - [SMALL_STATE(1147)] = 40173, - [SMALL_STATE(1148)] = 40186, - [SMALL_STATE(1149)] = 40199, - [SMALL_STATE(1150)] = 40212, - [SMALL_STATE(1151)] = 40225, - [SMALL_STATE(1152)] = 40238, - [SMALL_STATE(1153)] = 40251, - [SMALL_STATE(1154)] = 40264, - [SMALL_STATE(1155)] = 40277, - [SMALL_STATE(1156)] = 40290, - [SMALL_STATE(1157)] = 40303, - [SMALL_STATE(1158)] = 40316, - [SMALL_STATE(1159)] = 40329, - [SMALL_STATE(1160)] = 40342, - [SMALL_STATE(1161)] = 40353, - [SMALL_STATE(1162)] = 40366, - [SMALL_STATE(1163)] = 40379, - [SMALL_STATE(1164)] = 40392, - [SMALL_STATE(1165)] = 40405, - [SMALL_STATE(1166)] = 40418, - [SMALL_STATE(1167)] = 40431, - [SMALL_STATE(1168)] = 40444, - [SMALL_STATE(1169)] = 40457, - [SMALL_STATE(1170)] = 40470, - [SMALL_STATE(1171)] = 40483, - [SMALL_STATE(1172)] = 40496, - [SMALL_STATE(1173)] = 40509, - [SMALL_STATE(1174)] = 40522, - [SMALL_STATE(1175)] = 40535, - [SMALL_STATE(1176)] = 40548, - [SMALL_STATE(1177)] = 40561, - [SMALL_STATE(1178)] = 40574, - [SMALL_STATE(1179)] = 40587, - [SMALL_STATE(1180)] = 40600, - [SMALL_STATE(1181)] = 40613, - [SMALL_STATE(1182)] = 40622, - [SMALL_STATE(1183)] = 40635, - [SMALL_STATE(1184)] = 40648, - [SMALL_STATE(1185)] = 40661, - [SMALL_STATE(1186)] = 40672, - [SMALL_STATE(1187)] = 40685, - [SMALL_STATE(1188)] = 40698, - [SMALL_STATE(1189)] = 40711, - [SMALL_STATE(1190)] = 40724, - [SMALL_STATE(1191)] = 40737, - [SMALL_STATE(1192)] = 40750, - [SMALL_STATE(1193)] = 40763, - [SMALL_STATE(1194)] = 40776, - [SMALL_STATE(1195)] = 40789, - [SMALL_STATE(1196)] = 40802, - [SMALL_STATE(1197)] = 40815, - [SMALL_STATE(1198)] = 40828, - [SMALL_STATE(1199)] = 40841, - [SMALL_STATE(1200)] = 40854, - [SMALL_STATE(1201)] = 40863, - [SMALL_STATE(1202)] = 40876, - [SMALL_STATE(1203)] = 40889, - [SMALL_STATE(1204)] = 40902, - [SMALL_STATE(1205)] = 40915, - [SMALL_STATE(1206)] = 40928, - [SMALL_STATE(1207)] = 40936, - [SMALL_STATE(1208)] = 40944, - [SMALL_STATE(1209)] = 40954, - [SMALL_STATE(1210)] = 40964, - [SMALL_STATE(1211)] = 40972, - [SMALL_STATE(1212)] = 40982, - [SMALL_STATE(1213)] = 40992, - [SMALL_STATE(1214)] = 41002, - [SMALL_STATE(1215)] = 41010, - [SMALL_STATE(1216)] = 41020, - [SMALL_STATE(1217)] = 41030, - [SMALL_STATE(1218)] = 41040, - [SMALL_STATE(1219)] = 41048, - [SMALL_STATE(1220)] = 41058, - [SMALL_STATE(1221)] = 41066, - [SMALL_STATE(1222)] = 41076, - [SMALL_STATE(1223)] = 41084, - [SMALL_STATE(1224)] = 41092, - [SMALL_STATE(1225)] = 41102, - [SMALL_STATE(1226)] = 41112, - [SMALL_STATE(1227)] = 41120, - [SMALL_STATE(1228)] = 41128, - [SMALL_STATE(1229)] = 41138, - [SMALL_STATE(1230)] = 41148, - [SMALL_STATE(1231)] = 41158, - [SMALL_STATE(1232)] = 41168, - [SMALL_STATE(1233)] = 41176, - [SMALL_STATE(1234)] = 41186, - [SMALL_STATE(1235)] = 41196, - [SMALL_STATE(1236)] = 41204, - [SMALL_STATE(1237)] = 41214, - [SMALL_STATE(1238)] = 41224, - [SMALL_STATE(1239)] = 41234, - [SMALL_STATE(1240)] = 41244, - [SMALL_STATE(1241)] = 41252, - [SMALL_STATE(1242)] = 41260, - [SMALL_STATE(1243)] = 41270, - [SMALL_STATE(1244)] = 41280, - [SMALL_STATE(1245)] = 41290, - [SMALL_STATE(1246)] = 41300, - [SMALL_STATE(1247)] = 41310, - [SMALL_STATE(1248)] = 41320, - [SMALL_STATE(1249)] = 41328, - [SMALL_STATE(1250)] = 41338, - [SMALL_STATE(1251)] = 41346, - [SMALL_STATE(1252)] = 41356, - [SMALL_STATE(1253)] = 41364, - [SMALL_STATE(1254)] = 41374, - [SMALL_STATE(1255)] = 41384, - [SMALL_STATE(1256)] = 41394, - [SMALL_STATE(1257)] = 41404, - [SMALL_STATE(1258)] = 41414, - [SMALL_STATE(1259)] = 41424, - [SMALL_STATE(1260)] = 41434, - [SMALL_STATE(1261)] = 41444, - [SMALL_STATE(1262)] = 41454, - [SMALL_STATE(1263)] = 41464, - [SMALL_STATE(1264)] = 41474, - [SMALL_STATE(1265)] = 41484, - [SMALL_STATE(1266)] = 41494, - [SMALL_STATE(1267)] = 41502, - [SMALL_STATE(1268)] = 41509, - [SMALL_STATE(1269)] = 41516, - [SMALL_STATE(1270)] = 41523, - [SMALL_STATE(1271)] = 41530, - [SMALL_STATE(1272)] = 41537, - [SMALL_STATE(1273)] = 41544, - [SMALL_STATE(1274)] = 41551, - [SMALL_STATE(1275)] = 41558, - [SMALL_STATE(1276)] = 41565, - [SMALL_STATE(1277)] = 41572, - [SMALL_STATE(1278)] = 41579, - [SMALL_STATE(1279)] = 41586, - [SMALL_STATE(1280)] = 41593, - [SMALL_STATE(1281)] = 41600, - [SMALL_STATE(1282)] = 41607, - [SMALL_STATE(1283)] = 41614, - [SMALL_STATE(1284)] = 41621, - [SMALL_STATE(1285)] = 41628, - [SMALL_STATE(1286)] = 41635, - [SMALL_STATE(1287)] = 41642, - [SMALL_STATE(1288)] = 41649, - [SMALL_STATE(1289)] = 41656, - [SMALL_STATE(1290)] = 41663, - [SMALL_STATE(1291)] = 41670, - [SMALL_STATE(1292)] = 41677, - [SMALL_STATE(1293)] = 41684, - [SMALL_STATE(1294)] = 41691, - [SMALL_STATE(1295)] = 41698, - [SMALL_STATE(1296)] = 41705, - [SMALL_STATE(1297)] = 41712, - [SMALL_STATE(1298)] = 41719, - [SMALL_STATE(1299)] = 41726, - [SMALL_STATE(1300)] = 41733, - [SMALL_STATE(1301)] = 41740, - [SMALL_STATE(1302)] = 41747, - [SMALL_STATE(1303)] = 41754, - [SMALL_STATE(1304)] = 41761, - [SMALL_STATE(1305)] = 41768, - [SMALL_STATE(1306)] = 41775, - [SMALL_STATE(1307)] = 41782, - [SMALL_STATE(1308)] = 41789, - [SMALL_STATE(1309)] = 41796, - [SMALL_STATE(1310)] = 41803, - [SMALL_STATE(1311)] = 41810, - [SMALL_STATE(1312)] = 41817, - [SMALL_STATE(1313)] = 41824, - [SMALL_STATE(1314)] = 41831, - [SMALL_STATE(1315)] = 41838, - [SMALL_STATE(1316)] = 41845, - [SMALL_STATE(1317)] = 41852, - [SMALL_STATE(1318)] = 41859, - [SMALL_STATE(1319)] = 41866, - [SMALL_STATE(1320)] = 41873, - [SMALL_STATE(1321)] = 41880, - [SMALL_STATE(1322)] = 41887, - [SMALL_STATE(1323)] = 41894, - [SMALL_STATE(1324)] = 41901, - [SMALL_STATE(1325)] = 41908, - [SMALL_STATE(1326)] = 41915, - [SMALL_STATE(1327)] = 41922, - [SMALL_STATE(1328)] = 41929, - [SMALL_STATE(1329)] = 41936, - [SMALL_STATE(1330)] = 41943, - [SMALL_STATE(1331)] = 41950, - [SMALL_STATE(1332)] = 41957, - [SMALL_STATE(1333)] = 41964, - [SMALL_STATE(1334)] = 41971, - [SMALL_STATE(1335)] = 41978, - [SMALL_STATE(1336)] = 41985, - [SMALL_STATE(1337)] = 41992, - [SMALL_STATE(1338)] = 41999, - [SMALL_STATE(1339)] = 42006, - [SMALL_STATE(1340)] = 42013, - [SMALL_STATE(1341)] = 42020, - [SMALL_STATE(1342)] = 42027, - [SMALL_STATE(1343)] = 42034, - [SMALL_STATE(1344)] = 42041, - [SMALL_STATE(1345)] = 42048, - [SMALL_STATE(1346)] = 42055, - [SMALL_STATE(1347)] = 42062, - [SMALL_STATE(1348)] = 42069, - [SMALL_STATE(1349)] = 42076, - [SMALL_STATE(1350)] = 42083, - [SMALL_STATE(1351)] = 42090, - [SMALL_STATE(1352)] = 42097, - [SMALL_STATE(1353)] = 42104, - [SMALL_STATE(1354)] = 42111, - [SMALL_STATE(1355)] = 42118, - [SMALL_STATE(1356)] = 42125, - [SMALL_STATE(1357)] = 42132, - [SMALL_STATE(1358)] = 42139, - [SMALL_STATE(1359)] = 42146, - [SMALL_STATE(1360)] = 42153, - [SMALL_STATE(1361)] = 42160, - [SMALL_STATE(1362)] = 42167, - [SMALL_STATE(1363)] = 42174, - [SMALL_STATE(1364)] = 42181, - [SMALL_STATE(1365)] = 42188, - [SMALL_STATE(1366)] = 42195, - [SMALL_STATE(1367)] = 42202, - [SMALL_STATE(1368)] = 42209, - [SMALL_STATE(1369)] = 42216, - [SMALL_STATE(1370)] = 42223, - [SMALL_STATE(1371)] = 42230, - [SMALL_STATE(1372)] = 42237, - [SMALL_STATE(1373)] = 42244, - [SMALL_STATE(1374)] = 42251, - [SMALL_STATE(1375)] = 42258, - [SMALL_STATE(1376)] = 42265, - [SMALL_STATE(1377)] = 42272, - [SMALL_STATE(1378)] = 42279, - [SMALL_STATE(1379)] = 42286, - [SMALL_STATE(1380)] = 42293, - [SMALL_STATE(1381)] = 42300, - [SMALL_STATE(1382)] = 42307, - [SMALL_STATE(1383)] = 42314, - [SMALL_STATE(1384)] = 42321, - [SMALL_STATE(1385)] = 42328, - [SMALL_STATE(1386)] = 42335, - [SMALL_STATE(1387)] = 42342, - [SMALL_STATE(1388)] = 42349, - [SMALL_STATE(1389)] = 42356, - [SMALL_STATE(1390)] = 42363, - [SMALL_STATE(1391)] = 42370, - [SMALL_STATE(1392)] = 42377, - [SMALL_STATE(1393)] = 42384, - [SMALL_STATE(1394)] = 42391, - [SMALL_STATE(1395)] = 42398, - [SMALL_STATE(1396)] = 42405, - [SMALL_STATE(1397)] = 42412, - [SMALL_STATE(1398)] = 42419, - [SMALL_STATE(1399)] = 42426, - [SMALL_STATE(1400)] = 42433, - [SMALL_STATE(1401)] = 42440, - [SMALL_STATE(1402)] = 42447, - [SMALL_STATE(1403)] = 42454, - [SMALL_STATE(1404)] = 42461, - [SMALL_STATE(1405)] = 42468, - [SMALL_STATE(1406)] = 42475, - [SMALL_STATE(1407)] = 42482, - [SMALL_STATE(1408)] = 42489, - [SMALL_STATE(1409)] = 42496, - [SMALL_STATE(1410)] = 42503, - [SMALL_STATE(1411)] = 42510, - [SMALL_STATE(1412)] = 42517, - [SMALL_STATE(1413)] = 42524, - [SMALL_STATE(1414)] = 42531, - [SMALL_STATE(1415)] = 42538, - [SMALL_STATE(1416)] = 42545, - [SMALL_STATE(1417)] = 42552, - [SMALL_STATE(1418)] = 42559, - [SMALL_STATE(1419)] = 42566, - [SMALL_STATE(1420)] = 42573, - [SMALL_STATE(1421)] = 42580, - [SMALL_STATE(1422)] = 42587, - [SMALL_STATE(1423)] = 42594, - [SMALL_STATE(1424)] = 42601, - [SMALL_STATE(1425)] = 42608, - [SMALL_STATE(1426)] = 42615, - [SMALL_STATE(1427)] = 42622, - [SMALL_STATE(1428)] = 42629, - [SMALL_STATE(1429)] = 42636, - [SMALL_STATE(1430)] = 42643, - [SMALL_STATE(1431)] = 42650, - [SMALL_STATE(1432)] = 42657, - [SMALL_STATE(1433)] = 42664, - [SMALL_STATE(1434)] = 42671, - [SMALL_STATE(1435)] = 42678, - [SMALL_STATE(1436)] = 42685, - [SMALL_STATE(1437)] = 42692, - [SMALL_STATE(1438)] = 42699, - [SMALL_STATE(1439)] = 42706, - [SMALL_STATE(1440)] = 42713, - [SMALL_STATE(1441)] = 42720, - [SMALL_STATE(1442)] = 42727, - [SMALL_STATE(1443)] = 42734, - [SMALL_STATE(1444)] = 42741, - [SMALL_STATE(1445)] = 42748, - [SMALL_STATE(1446)] = 42755, - [SMALL_STATE(1447)] = 42762, - [SMALL_STATE(1448)] = 42769, - [SMALL_STATE(1449)] = 42776, + [SMALL_STATE(386)] = 0, + [SMALL_STATE(387)] = 71, + [SMALL_STATE(388)] = 178, + [SMALL_STATE(389)] = 249, + [SMALL_STATE(390)] = 321, + [SMALL_STATE(391)] = 439, + [SMALL_STATE(392)] = 547, + [SMALL_STATE(393)] = 655, + [SMALL_STATE(394)] = 763, + [SMALL_STATE(395)] = 871, + [SMALL_STATE(396)] = 979, + [SMALL_STATE(397)] = 1087, + [SMALL_STATE(398)] = 1195, + [SMALL_STATE(399)] = 1303, + [SMALL_STATE(400)] = 1411, + [SMALL_STATE(401)] = 1519, + [SMALL_STATE(402)] = 1627, + [SMALL_STATE(403)] = 1735, + [SMALL_STATE(404)] = 1843, + [SMALL_STATE(405)] = 1951, + [SMALL_STATE(406)] = 2026, + [SMALL_STATE(407)] = 2101, + [SMALL_STATE(408)] = 2178, + [SMALL_STATE(409)] = 2253, + [SMALL_STATE(410)] = 2330, + [SMALL_STATE(411)] = 2407, + [SMALL_STATE(412)] = 2482, + [SMALL_STATE(413)] = 2559, + [SMALL_STATE(414)] = 2659, + [SMALL_STATE(415)] = 2759, + [SMALL_STATE(416)] = 2831, + [SMALL_STATE(417)] = 2928, + [SMALL_STATE(418)] = 3025, + [SMALL_STATE(419)] = 3119, + [SMALL_STATE(420)] = 3217, + [SMALL_STATE(421)] = 3315, + [SMALL_STATE(422)] = 3413, + [SMALL_STATE(423)] = 3511, + [SMALL_STATE(424)] = 3609, + [SMALL_STATE(425)] = 3707, + [SMALL_STATE(426)] = 3798, + [SMALL_STATE(427)] = 3859, + [SMALL_STATE(428)] = 3950, + [SMALL_STATE(429)] = 4041, + [SMALL_STATE(430)] = 4102, + [SMALL_STATE(431)] = 4193, + [SMALL_STATE(432)] = 4284, + [SMALL_STATE(433)] = 4345, + [SMALL_STATE(434)] = 4436, + [SMALL_STATE(435)] = 4527, + [SMALL_STATE(436)] = 4618, + [SMALL_STATE(437)] = 4709, + [SMALL_STATE(438)] = 4800, + [SMALL_STATE(439)] = 4902, + [SMALL_STATE(440)] = 4993, + [SMALL_STATE(441)] = 5084, + [SMALL_STATE(442)] = 5175, + [SMALL_STATE(443)] = 5266, + [SMALL_STATE(444)] = 5321, + [SMALL_STATE(445)] = 5376, + [SMALL_STATE(446)] = 5458, + [SMALL_STATE(447)] = 5540, + [SMALL_STATE(448)] = 5622, + [SMALL_STATE(449)] = 5704, + [SMALL_STATE(450)] = 5786, + [SMALL_STATE(451)] = 5868, + [SMALL_STATE(452)] = 5950, + [SMALL_STATE(453)] = 6032, + [SMALL_STATE(454)] = 6114, + [SMALL_STATE(455)] = 6196, + [SMALL_STATE(456)] = 6278, + [SMALL_STATE(457)] = 6360, + [SMALL_STATE(458)] = 6442, + [SMALL_STATE(459)] = 6524, + [SMALL_STATE(460)] = 6606, + [SMALL_STATE(461)] = 6688, + [SMALL_STATE(462)] = 6770, + [SMALL_STATE(463)] = 6852, + [SMALL_STATE(464)] = 6934, + [SMALL_STATE(465)] = 7016, + [SMALL_STATE(466)] = 7098, + [SMALL_STATE(467)] = 7180, + [SMALL_STATE(468)] = 7262, + [SMALL_STATE(469)] = 7344, + [SMALL_STATE(470)] = 7426, + [SMALL_STATE(471)] = 7508, + [SMALL_STATE(472)] = 7590, + [SMALL_STATE(473)] = 7672, + [SMALL_STATE(474)] = 7754, + [SMALL_STATE(475)] = 7836, + [SMALL_STATE(476)] = 7918, + [SMALL_STATE(477)] = 8000, + [SMALL_STATE(478)] = 8082, + [SMALL_STATE(479)] = 8164, + [SMALL_STATE(480)] = 8243, + [SMALL_STATE(481)] = 8322, + [SMALL_STATE(482)] = 8401, + [SMALL_STATE(483)] = 8480, + [SMALL_STATE(484)] = 8559, + [SMALL_STATE(485)] = 8638, + [SMALL_STATE(486)] = 8717, + [SMALL_STATE(487)] = 8796, + [SMALL_STATE(488)] = 8875, + [SMALL_STATE(489)] = 8954, + [SMALL_STATE(490)] = 9033, + [SMALL_STATE(491)] = 9112, + [SMALL_STATE(492)] = 9191, + [SMALL_STATE(493)] = 9270, + [SMALL_STATE(494)] = 9349, + [SMALL_STATE(495)] = 9428, + [SMALL_STATE(496)] = 9507, + [SMALL_STATE(497)] = 9586, + [SMALL_STATE(498)] = 9665, + [SMALL_STATE(499)] = 9744, + [SMALL_STATE(500)] = 9823, + [SMALL_STATE(501)] = 9874, + [SMALL_STATE(502)] = 9953, + [SMALL_STATE(503)] = 10032, + [SMALL_STATE(504)] = 10111, + [SMALL_STATE(505)] = 10190, + [SMALL_STATE(506)] = 10269, + [SMALL_STATE(507)] = 10348, + [SMALL_STATE(508)] = 10424, + [SMALL_STATE(509)] = 10500, + [SMALL_STATE(510)] = 10576, + [SMALL_STATE(511)] = 10652, + [SMALL_STATE(512)] = 10728, + [SMALL_STATE(513)] = 10804, + [SMALL_STATE(514)] = 10880, + [SMALL_STATE(515)] = 10956, + [SMALL_STATE(516)] = 11032, + [SMALL_STATE(517)] = 11108, + [SMALL_STATE(518)] = 11168, + [SMALL_STATE(519)] = 11218, + [SMALL_STATE(520)] = 11276, + [SMALL_STATE(521)] = 11352, + [SMALL_STATE(522)] = 11416, + [SMALL_STATE(523)] = 11492, + [SMALL_STATE(524)] = 11558, + [SMALL_STATE(525)] = 11628, + [SMALL_STATE(526)] = 11700, + [SMALL_STATE(527)] = 11774, + [SMALL_STATE(528)] = 11850, + [SMALL_STATE(529)] = 11900, + [SMALL_STATE(530)] = 11978, + [SMALL_STATE(531)] = 12058, + [SMALL_STATE(532)] = 12134, + [SMALL_STATE(533)] = 12184, + [SMALL_STATE(534)] = 12246, + [SMALL_STATE(535)] = 12322, + [SMALL_STATE(536)] = 12398, + [SMALL_STATE(537)] = 12474, + [SMALL_STATE(538)] = 12550, + [SMALL_STATE(539)] = 12632, + [SMALL_STATE(540)] = 12708, + [SMALL_STATE(541)] = 12784, + [SMALL_STATE(542)] = 12860, + [SMALL_STATE(543)] = 12936, + [SMALL_STATE(544)] = 13012, + [SMALL_STATE(545)] = 13088, + [SMALL_STATE(546)] = 13164, + [SMALL_STATE(547)] = 13240, + [SMALL_STATE(548)] = 13300, + [SMALL_STATE(549)] = 13376, + [SMALL_STATE(550)] = 13426, + [SMALL_STATE(551)] = 13502, + [SMALL_STATE(552)] = 13578, + [SMALL_STATE(553)] = 13654, + [SMALL_STATE(554)] = 13730, + [SMALL_STATE(555)] = 13806, + [SMALL_STATE(556)] = 13882, + [SMALL_STATE(557)] = 13958, + [SMALL_STATE(558)] = 14034, + [SMALL_STATE(559)] = 14110, + [SMALL_STATE(560)] = 14160, + [SMALL_STATE(561)] = 14236, + [SMALL_STATE(562)] = 14312, + [SMALL_STATE(563)] = 14374, + [SMALL_STATE(564)] = 14424, + [SMALL_STATE(565)] = 14500, + [SMALL_STATE(566)] = 14576, + [SMALL_STATE(567)] = 14626, + [SMALL_STATE(568)] = 14702, + [SMALL_STATE(569)] = 14778, + [SMALL_STATE(570)] = 14828, + [SMALL_STATE(571)] = 14904, + [SMALL_STATE(572)] = 14980, + [SMALL_STATE(573)] = 15030, + [SMALL_STATE(574)] = 15080, + [SMALL_STATE(575)] = 15156, + [SMALL_STATE(576)] = 15232, + [SMALL_STATE(577)] = 15308, + [SMALL_STATE(578)] = 15384, + [SMALL_STATE(579)] = 15434, + [SMALL_STATE(580)] = 15510, + [SMALL_STATE(581)] = 15586, + [SMALL_STATE(582)] = 15662, + [SMALL_STATE(583)] = 15738, + [SMALL_STATE(584)] = 15788, + [SMALL_STATE(585)] = 15864, + [SMALL_STATE(586)] = 15940, + [SMALL_STATE(587)] = 16016, + [SMALL_STATE(588)] = 16092, + [SMALL_STATE(589)] = 16168, + [SMALL_STATE(590)] = 16244, + [SMALL_STATE(591)] = 16320, + [SMALL_STATE(592)] = 16396, + [SMALL_STATE(593)] = 16472, + [SMALL_STATE(594)] = 16548, + [SMALL_STATE(595)] = 16624, + [SMALL_STATE(596)] = 16700, + [SMALL_STATE(597)] = 16776, + [SMALL_STATE(598)] = 16852, + [SMALL_STATE(599)] = 16928, + [SMALL_STATE(600)] = 17004, + [SMALL_STATE(601)] = 17054, + [SMALL_STATE(602)] = 17130, + [SMALL_STATE(603)] = 17206, + [SMALL_STATE(604)] = 17256, + [SMALL_STATE(605)] = 17322, + [SMALL_STATE(606)] = 17398, + [SMALL_STATE(607)] = 17474, + [SMALL_STATE(608)] = 17534, + [SMALL_STATE(609)] = 17594, + [SMALL_STATE(610)] = 17670, + [SMALL_STATE(611)] = 17720, + [SMALL_STATE(612)] = 17796, + [SMALL_STATE(613)] = 17880, + [SMALL_STATE(614)] = 17933, + [SMALL_STATE(615)] = 17986, + [SMALL_STATE(616)] = 18067, + [SMALL_STATE(617)] = 18120, + [SMALL_STATE(618)] = 18167, + [SMALL_STATE(619)] = 18220, + [SMALL_STATE(620)] = 18273, + [SMALL_STATE(621)] = 18320, + [SMALL_STATE(622)] = 18373, + [SMALL_STATE(623)] = 18449, + [SMALL_STATE(624)] = 18515, + [SMALL_STATE(625)] = 18571, + [SMALL_STATE(626)] = 18633, + [SMALL_STATE(627)] = 18679, + [SMALL_STATE(628)] = 18741, + [SMALL_STATE(629)] = 18801, + [SMALL_STATE(630)] = 18879, + [SMALL_STATE(631)] = 18935, + [SMALL_STATE(632)] = 19015, + [SMALL_STATE(633)] = 19071, + [SMALL_STATE(634)] = 19149, + [SMALL_STATE(635)] = 19219, + [SMALL_STATE(636)] = 19277, + [SMALL_STATE(637)] = 19351, + [SMALL_STATE(638)] = 19419, + [SMALL_STATE(639)] = 19491, + [SMALL_STATE(640)] = 19545, + [SMALL_STATE(641)] = 19601, + [SMALL_STATE(642)] = 19646, + [SMALL_STATE(643)] = 19691, + [SMALL_STATE(644)] = 19736, + [SMALL_STATE(645)] = 19785, + [SMALL_STATE(646)] = 19857, + [SMALL_STATE(647)] = 19929, + [SMALL_STATE(648)] = 19985, + [SMALL_STATE(649)] = 20057, + [SMALL_STATE(650)] = 20129, + [SMALL_STATE(651)] = 20198, + [SMALL_STATE(652)] = 20272, + [SMALL_STATE(653)] = 20316, + [SMALL_STATE(654)] = 20387, + [SMALL_STATE(655)] = 20442, + [SMALL_STATE(656)] = 20499, + [SMALL_STATE(657)] = 20568, + [SMALL_STATE(658)] = 20621, + [SMALL_STATE(659)] = 20682, + [SMALL_STATE(660)] = 20755, + [SMALL_STATE(661)] = 20818, + [SMALL_STATE(662)] = 20883, + [SMALL_STATE(663)] = 20940, + [SMALL_STATE(664)] = 20979, + [SMALL_STATE(665)] = 21046, + [SMALL_STATE(666)] = 21113, + [SMALL_STATE(667)] = 21151, + [SMALL_STATE(668)] = 21189, + [SMALL_STATE(669)] = 21226, + [SMALL_STATE(670)] = 21263, + [SMALL_STATE(671)] = 21300, + [SMALL_STATE(672)] = 21337, + [SMALL_STATE(673)] = 21374, + [SMALL_STATE(674)] = 21411, + [SMALL_STATE(675)] = 21486, + [SMALL_STATE(676)] = 21523, + [SMALL_STATE(677)] = 21560, + [SMALL_STATE(678)] = 21597, + [SMALL_STATE(679)] = 21634, + [SMALL_STATE(680)] = 21671, + [SMALL_STATE(681)] = 21708, + [SMALL_STATE(682)] = 21745, + [SMALL_STATE(683)] = 21782, + [SMALL_STATE(684)] = 21855, + [SMALL_STATE(685)] = 21892, + [SMALL_STATE(686)] = 21967, + [SMALL_STATE(687)] = 22004, + [SMALL_STATE(688)] = 22041, + [SMALL_STATE(689)] = 22116, + [SMALL_STATE(690)] = 22153, + [SMALL_STATE(691)] = 22190, + [SMALL_STATE(692)] = 22227, + [SMALL_STATE(693)] = 22264, + [SMALL_STATE(694)] = 22301, + [SMALL_STATE(695)] = 22338, + [SMALL_STATE(696)] = 22375, + [SMALL_STATE(697)] = 22447, + [SMALL_STATE(698)] = 22519, + [SMALL_STATE(699)] = 22591, + [SMALL_STATE(700)] = 22663, + [SMALL_STATE(701)] = 22735, + [SMALL_STATE(702)] = 22807, + [SMALL_STATE(703)] = 22879, + [SMALL_STATE(704)] = 22951, + [SMALL_STATE(705)] = 22987, + [SMALL_STATE(706)] = 23035, + [SMALL_STATE(707)] = 23083, + [SMALL_STATE(708)] = 23155, + [SMALL_STATE(709)] = 23227, + [SMALL_STATE(710)] = 23299, + [SMALL_STATE(711)] = 23371, + [SMALL_STATE(712)] = 23443, + [SMALL_STATE(713)] = 23479, + [SMALL_STATE(714)] = 23549, + [SMALL_STATE(715)] = 23621, + [SMALL_STATE(716)] = 23693, + [SMALL_STATE(717)] = 23765, + [SMALL_STATE(718)] = 23837, + [SMALL_STATE(719)] = 23909, + [SMALL_STATE(720)] = 23981, + [SMALL_STATE(721)] = 24053, + [SMALL_STATE(722)] = 24125, + [SMALL_STATE(723)] = 24197, + [SMALL_STATE(724)] = 24267, + [SMALL_STATE(725)] = 24339, + [SMALL_STATE(726)] = 24411, + [SMALL_STATE(727)] = 24483, + [SMALL_STATE(728)] = 24555, + [SMALL_STATE(729)] = 24627, + [SMALL_STATE(730)] = 24699, + [SMALL_STATE(731)] = 24771, + [SMALL_STATE(732)] = 24843, + [SMALL_STATE(733)] = 24915, + [SMALL_STATE(734)] = 24987, + [SMALL_STATE(735)] = 25059, + [SMALL_STATE(736)] = 25131, + [SMALL_STATE(737)] = 25179, + [SMALL_STATE(738)] = 25251, + [SMALL_STATE(739)] = 25323, + [SMALL_STATE(740)] = 25371, + [SMALL_STATE(741)] = 25443, + [SMALL_STATE(742)] = 25513, + [SMALL_STATE(743)] = 25583, + [SMALL_STATE(744)] = 25655, + [SMALL_STATE(745)] = 25725, + [SMALL_STATE(746)] = 25794, + [SMALL_STATE(747)] = 25863, + [SMALL_STATE(748)] = 25898, + [SMALL_STATE(749)] = 25967, + [SMALL_STATE(750)] = 26002, + [SMALL_STATE(751)] = 26071, + [SMALL_STATE(752)] = 26140, + [SMALL_STATE(753)] = 26175, + [SMALL_STATE(754)] = 26244, + [SMALL_STATE(755)] = 26279, + [SMALL_STATE(756)] = 26314, + [SMALL_STATE(757)] = 26383, + [SMALL_STATE(758)] = 26452, + [SMALL_STATE(759)] = 26487, + [SMALL_STATE(760)] = 26522, + [SMALL_STATE(761)] = 26591, + [SMALL_STATE(762)] = 26660, + [SMALL_STATE(763)] = 26729, + [SMALL_STATE(764)] = 26798, + [SMALL_STATE(765)] = 26867, + [SMALL_STATE(766)] = 26902, + [SMALL_STATE(767)] = 26937, + [SMALL_STATE(768)] = 26972, + [SMALL_STATE(769)] = 27007, + [SMALL_STATE(770)] = 27068, + [SMALL_STATE(771)] = 27137, + [SMALL_STATE(772)] = 27176, + [SMALL_STATE(773)] = 27245, + [SMALL_STATE(774)] = 27314, + [SMALL_STATE(775)] = 27383, + [SMALL_STATE(776)] = 27418, + [SMALL_STATE(777)] = 27461, + [SMALL_STATE(778)] = 27496, + [SMALL_STATE(779)] = 27565, + [SMALL_STATE(780)] = 27634, + [SMALL_STATE(781)] = 27669, + [SMALL_STATE(782)] = 27722, + [SMALL_STATE(783)] = 27757, + [SMALL_STATE(784)] = 27826, + [SMALL_STATE(785)] = 27861, + [SMALL_STATE(786)] = 27930, + [SMALL_STATE(787)] = 27969, + [SMALL_STATE(788)] = 28004, + [SMALL_STATE(789)] = 28039, + [SMALL_STATE(790)] = 28108, + [SMALL_STATE(791)] = 28177, + [SMALL_STATE(792)] = 28212, + [SMALL_STATE(793)] = 28281, + [SMALL_STATE(794)] = 28350, + [SMALL_STATE(795)] = 28385, + [SMALL_STATE(796)] = 28454, + [SMALL_STATE(797)] = 28523, + [SMALL_STATE(798)] = 28558, + [SMALL_STATE(799)] = 28625, + [SMALL_STATE(800)] = 28660, + [SMALL_STATE(801)] = 28729, + [SMALL_STATE(802)] = 28764, + [SMALL_STATE(803)] = 28799, + [SMALL_STATE(804)] = 28848, + [SMALL_STATE(805)] = 28913, + [SMALL_STATE(806)] = 28982, + [SMALL_STATE(807)] = 29045, + [SMALL_STATE(808)] = 29108, + [SMALL_STATE(809)] = 29147, + [SMALL_STATE(810)] = 29182, + [SMALL_STATE(811)] = 29241, + [SMALL_STATE(812)] = 29276, + [SMALL_STATE(813)] = 29311, + [SMALL_STATE(814)] = 29346, + [SMALL_STATE(815)] = 29381, + [SMALL_STATE(816)] = 29416, + [SMALL_STATE(817)] = 29485, + [SMALL_STATE(818)] = 29520, + [SMALL_STATE(819)] = 29555, + [SMALL_STATE(820)] = 29624, + [SMALL_STATE(821)] = 29659, + [SMALL_STATE(822)] = 29728, + [SMALL_STATE(823)] = 29763, + [SMALL_STATE(824)] = 29832, + [SMALL_STATE(825)] = 29889, + [SMALL_STATE(826)] = 29928, + [SMALL_STATE(827)] = 29981, + [SMALL_STATE(828)] = 30016, + [SMALL_STATE(829)] = 30051, + [SMALL_STATE(830)] = 30102, + [SMALL_STATE(831)] = 30141, + [SMALL_STATE(832)] = 30176, + [SMALL_STATE(833)] = 30211, + [SMALL_STATE(834)] = 30246, + [SMALL_STATE(835)] = 30281, + [SMALL_STATE(836)] = 30350, + [SMALL_STATE(837)] = 30408, + [SMALL_STATE(838)] = 30463, + [SMALL_STATE(839)] = 30518, + [SMALL_STATE(840)] = 30573, + [SMALL_STATE(841)] = 30628, + [SMALL_STATE(842)] = 30683, + [SMALL_STATE(843)] = 30738, + [SMALL_STATE(844)] = 30793, + [SMALL_STATE(845)] = 30848, + [SMALL_STATE(846)] = 30903, + [SMALL_STATE(847)] = 30958, + [SMALL_STATE(848)] = 31013, + [SMALL_STATE(849)] = 31068, + [SMALL_STATE(850)] = 31114, + [SMALL_STATE(851)] = 31160, + [SMALL_STATE(852)] = 31206, + [SMALL_STATE(853)] = 31252, + [SMALL_STATE(854)] = 31287, + [SMALL_STATE(855)] = 31338, + [SMALL_STATE(856)] = 31373, + [SMALL_STATE(857)] = 31408, + [SMALL_STATE(858)] = 31443, + [SMALL_STATE(859)] = 31478, + [SMALL_STATE(860)] = 31526, + [SMALL_STATE(861)] = 31560, + [SMALL_STATE(862)] = 31608, + [SMALL_STATE(863)] = 31656, + [SMALL_STATE(864)] = 31704, + [SMALL_STATE(865)] = 31752, + [SMALL_STATE(866)] = 31800, + [SMALL_STATE(867)] = 31848, + [SMALL_STATE(868)] = 31896, + [SMALL_STATE(869)] = 31944, + [SMALL_STATE(870)] = 31973, + [SMALL_STATE(871)] = 32028, + [SMALL_STATE(872)] = 32061, + [SMALL_STATE(873)] = 32090, + [SMALL_STATE(874)] = 32119, + [SMALL_STATE(875)] = 32148, + [SMALL_STATE(876)] = 32177, + [SMALL_STATE(877)] = 32206, + [SMALL_STATE(878)] = 32235, + [SMALL_STATE(879)] = 32264, + [SMALL_STATE(880)] = 32293, + [SMALL_STATE(881)] = 32322, + [SMALL_STATE(882)] = 32351, + [SMALL_STATE(883)] = 32380, + [SMALL_STATE(884)] = 32409, + [SMALL_STATE(885)] = 32438, + [SMALL_STATE(886)] = 32467, + [SMALL_STATE(887)] = 32496, + [SMALL_STATE(888)] = 32525, + [SMALL_STATE(889)] = 32568, + [SMALL_STATE(890)] = 32601, + [SMALL_STATE(891)] = 32630, + [SMALL_STATE(892)] = 32659, + [SMALL_STATE(893)] = 32702, + [SMALL_STATE(894)] = 32731, + [SMALL_STATE(895)] = 32762, + [SMALL_STATE(896)] = 32817, + [SMALL_STATE(897)] = 32846, + [SMALL_STATE(898)] = 32886, + [SMALL_STATE(899)] = 32930, + [SMALL_STATE(900)] = 32970, + [SMALL_STATE(901)] = 33010, + [SMALL_STATE(902)] = 33060, + [SMALL_STATE(903)] = 33100, + [SMALL_STATE(904)] = 33140, + [SMALL_STATE(905)] = 33180, + [SMALL_STATE(906)] = 33220, + [SMALL_STATE(907)] = 33260, + [SMALL_STATE(908)] = 33300, + [SMALL_STATE(909)] = 33340, + [SMALL_STATE(910)] = 33380, + [SMALL_STATE(911)] = 33420, + [SMALL_STATE(912)] = 33460, + [SMALL_STATE(913)] = 33500, + [SMALL_STATE(914)] = 33540, + [SMALL_STATE(915)] = 33580, + [SMALL_STATE(916)] = 33620, + [SMALL_STATE(917)] = 33656, + [SMALL_STATE(918)] = 33684, + [SMALL_STATE(919)] = 33724, + [SMALL_STATE(920)] = 33752, + [SMALL_STATE(921)] = 33780, + [SMALL_STATE(922)] = 33820, + [SMALL_STATE(923)] = 33848, + [SMALL_STATE(924)] = 33888, + [SMALL_STATE(925)] = 33928, + [SMALL_STATE(926)] = 33968, + [SMALL_STATE(927)] = 34008, + [SMALL_STATE(928)] = 34048, + [SMALL_STATE(929)] = 34088, + [SMALL_STATE(930)] = 34128, + [SMALL_STATE(931)] = 34168, + [SMALL_STATE(932)] = 34196, + [SMALL_STATE(933)] = 34236, + [SMALL_STATE(934)] = 34276, + [SMALL_STATE(935)] = 34316, + [SMALL_STATE(936)] = 34344, + [SMALL_STATE(937)] = 34384, + [SMALL_STATE(938)] = 34412, + [SMALL_STATE(939)] = 34452, + [SMALL_STATE(940)] = 34480, + [SMALL_STATE(941)] = 34508, + [SMALL_STATE(942)] = 34556, + [SMALL_STATE(943)] = 34588, + [SMALL_STATE(944)] = 34628, + [SMALL_STATE(945)] = 34668, + [SMALL_STATE(946)] = 34714, + [SMALL_STATE(947)] = 34760, + [SMALL_STATE(948)] = 34808, + [SMALL_STATE(949)] = 34842, + [SMALL_STATE(950)] = 34870, + [SMALL_STATE(951)] = 34910, + [SMALL_STATE(952)] = 34952, + [SMALL_STATE(953)] = 34997, + [SMALL_STATE(954)] = 35042, + [SMALL_STATE(955)] = 35091, + [SMALL_STATE(956)] = 35122, + [SMALL_STATE(957)] = 35167, + [SMALL_STATE(958)] = 35194, + [SMALL_STATE(959)] = 35221, + [SMALL_STATE(960)] = 35260, + [SMALL_STATE(961)] = 35301, + [SMALL_STATE(962)] = 35346, + [SMALL_STATE(963)] = 35389, + [SMALL_STATE(964)] = 35416, + [SMALL_STATE(965)] = 35443, + [SMALL_STATE(966)] = 35470, + [SMALL_STATE(967)] = 35503, + [SMALL_STATE(968)] = 35548, + [SMALL_STATE(969)] = 35593, + [SMALL_STATE(970)] = 35638, + [SMALL_STATE(971)] = 35665, + [SMALL_STATE(972)] = 35694, + [SMALL_STATE(973)] = 35721, + [SMALL_STATE(974)] = 35748, + [SMALL_STATE(975)] = 35783, + [SMALL_STATE(976)] = 35810, + [SMALL_STATE(977)] = 35855, + [SMALL_STATE(978)] = 35892, + [SMALL_STATE(979)] = 35919, + [SMALL_STATE(980)] = 35952, + [SMALL_STATE(981)] = 36001, + [SMALL_STATE(982)] = 36046, + [SMALL_STATE(983)] = 36091, + [SMALL_STATE(984)] = 36130, + [SMALL_STATE(985)] = 36169, + [SMALL_STATE(986)] = 36208, + [SMALL_STATE(987)] = 36247, + [SMALL_STATE(988)] = 36286, + [SMALL_STATE(989)] = 36325, + [SMALL_STATE(990)] = 36364, + [SMALL_STATE(991)] = 36403, + [SMALL_STATE(992)] = 36442, + [SMALL_STATE(993)] = 36480, + [SMALL_STATE(994)] = 36518, + [SMALL_STATE(995)] = 36550, + [SMALL_STATE(996)] = 36588, + [SMALL_STATE(997)] = 36626, + [SMALL_STATE(998)] = 36664, + [SMALL_STATE(999)] = 36702, + [SMALL_STATE(1000)] = 36733, + [SMALL_STATE(1001)] = 36771, + [SMALL_STATE(1002)] = 36809, + [SMALL_STATE(1003)] = 36847, + [SMALL_STATE(1004)] = 36868, + [SMALL_STATE(1005)] = 36889, + [SMALL_STATE(1006)] = 36927, + [SMALL_STATE(1007)] = 36965, + [SMALL_STATE(1008)] = 36997, + [SMALL_STATE(1009)] = 37035, + [SMALL_STATE(1010)] = 37067, + [SMALL_STATE(1011)] = 37099, + [SMALL_STATE(1012)] = 37131, + [SMALL_STATE(1013)] = 37163, + [SMALL_STATE(1014)] = 37195, + [SMALL_STATE(1015)] = 37227, + [SMALL_STATE(1016)] = 37265, + [SMALL_STATE(1017)] = 37297, + [SMALL_STATE(1018)] = 37329, + [SMALL_STATE(1019)] = 37356, + [SMALL_STATE(1020)] = 37391, + [SMALL_STATE(1021)] = 37420, + [SMALL_STATE(1022)] = 37449, + [SMALL_STATE(1023)] = 37476, + [SMALL_STATE(1024)] = 37505, + [SMALL_STATE(1025)] = 37534, + [SMALL_STATE(1026)] = 37563, + [SMALL_STATE(1027)] = 37592, + [SMALL_STATE(1028)] = 37627, + [SMALL_STATE(1029)] = 37656, + [SMALL_STATE(1030)] = 37679, + [SMALL_STATE(1031)] = 37708, + [SMALL_STATE(1032)] = 37737, + [SMALL_STATE(1033)] = 37766, + [SMALL_STATE(1034)] = 37789, + [SMALL_STATE(1035)] = 37818, + [SMALL_STATE(1036)] = 37847, + [SMALL_STATE(1037)] = 37876, + [SMALL_STATE(1038)] = 37911, + [SMALL_STATE(1039)] = 37938, + [SMALL_STATE(1040)] = 37961, + [SMALL_STATE(1041)] = 37990, + [SMALL_STATE(1042)] = 38019, + [SMALL_STATE(1043)] = 38048, + [SMALL_STATE(1044)] = 38075, + [SMALL_STATE(1045)] = 38104, + [SMALL_STATE(1046)] = 38127, + [SMALL_STATE(1047)] = 38145, + [SMALL_STATE(1048)] = 38171, + [SMALL_STATE(1049)] = 38203, + [SMALL_STATE(1050)] = 38221, + [SMALL_STATE(1051)] = 38239, + [SMALL_STATE(1052)] = 38265, + [SMALL_STATE(1053)] = 38287, + [SMALL_STATE(1054)] = 38313, + [SMALL_STATE(1055)] = 38345, + [SMALL_STATE(1056)] = 38377, + [SMALL_STATE(1057)] = 38409, + [SMALL_STATE(1058)] = 38435, + [SMALL_STATE(1059)] = 38464, + [SMALL_STATE(1060)] = 38491, + [SMALL_STATE(1061)] = 38520, + [SMALL_STATE(1062)] = 38541, + [SMALL_STATE(1063)] = 38566, + [SMALL_STATE(1064)] = 38595, + [SMALL_STATE(1065)] = 38616, + [SMALL_STATE(1066)] = 38645, + [SMALL_STATE(1067)] = 38674, + [SMALL_STATE(1068)] = 38695, + [SMALL_STATE(1069)] = 38716, + [SMALL_STATE(1070)] = 38737, + [SMALL_STATE(1071)] = 38766, + [SMALL_STATE(1072)] = 38791, + [SMALL_STATE(1073)] = 38820, + [SMALL_STATE(1074)] = 38845, + [SMALL_STATE(1075)] = 38870, + [SMALL_STATE(1076)] = 38895, + [SMALL_STATE(1077)] = 38924, + [SMALL_STATE(1078)] = 38948, + [SMALL_STATE(1079)] = 38964, + [SMALL_STATE(1080)] = 38984, + [SMALL_STATE(1081)] = 39000, + [SMALL_STATE(1082)] = 39016, + [SMALL_STATE(1083)] = 39032, + [SMALL_STATE(1084)] = 39048, + [SMALL_STATE(1085)] = 39074, + [SMALL_STATE(1086)] = 39100, + [SMALL_STATE(1087)] = 39126, + [SMALL_STATE(1088)] = 39152, + [SMALL_STATE(1089)] = 39176, + [SMALL_STATE(1090)] = 39192, + [SMALL_STATE(1091)] = 39207, + [SMALL_STATE(1092)] = 39222, + [SMALL_STATE(1093)] = 39245, + [SMALL_STATE(1094)] = 39260, + [SMALL_STATE(1095)] = 39275, + [SMALL_STATE(1096)] = 39290, + [SMALL_STATE(1097)] = 39305, + [SMALL_STATE(1098)] = 39320, + [SMALL_STATE(1099)] = 39343, + [SMALL_STATE(1100)] = 39366, + [SMALL_STATE(1101)] = 39381, + [SMALL_STATE(1102)] = 39399, + [SMALL_STATE(1103)] = 39413, + [SMALL_STATE(1104)] = 39427, + [SMALL_STATE(1105)] = 39441, + [SMALL_STATE(1106)] = 39455, + [SMALL_STATE(1107)] = 39469, + [SMALL_STATE(1108)] = 39487, + [SMALL_STATE(1109)] = 39501, + [SMALL_STATE(1110)] = 39515, + [SMALL_STATE(1111)] = 39529, + [SMALL_STATE(1112)] = 39548, + [SMALL_STATE(1113)] = 39567, + [SMALL_STATE(1114)] = 39586, + [SMALL_STATE(1115)] = 39603, + [SMALL_STATE(1116)] = 39620, + [SMALL_STATE(1117)] = 39639, + [SMALL_STATE(1118)] = 39658, + [SMALL_STATE(1119)] = 39675, + [SMALL_STATE(1120)] = 39692, + [SMALL_STATE(1121)] = 39708, + [SMALL_STATE(1122)] = 39724, + [SMALL_STATE(1123)] = 39734, + [SMALL_STATE(1124)] = 39744, + [SMALL_STATE(1125)] = 39760, + [SMALL_STATE(1126)] = 39770, + [SMALL_STATE(1127)] = 39780, + [SMALL_STATE(1128)] = 39796, + [SMALL_STATE(1129)] = 39810, + [SMALL_STATE(1130)] = 39826, + [SMALL_STATE(1131)] = 39842, + [SMALL_STATE(1132)] = 39858, + [SMALL_STATE(1133)] = 39874, + [SMALL_STATE(1134)] = 39890, + [SMALL_STATE(1135)] = 39906, + [SMALL_STATE(1136)] = 39916, + [SMALL_STATE(1137)] = 39926, + [SMALL_STATE(1138)] = 39942, + [SMALL_STATE(1139)] = 39952, + [SMALL_STATE(1140)] = 39968, + [SMALL_STATE(1141)] = 39978, + [SMALL_STATE(1142)] = 39994, + [SMALL_STATE(1143)] = 40004, + [SMALL_STATE(1144)] = 40020, + [SMALL_STATE(1145)] = 40036, + [SMALL_STATE(1146)] = 40052, + [SMALL_STATE(1147)] = 40068, + [SMALL_STATE(1148)] = 40084, + [SMALL_STATE(1149)] = 40094, + [SMALL_STATE(1150)] = 40110, + [SMALL_STATE(1151)] = 40126, + [SMALL_STATE(1152)] = 40136, + [SMALL_STATE(1153)] = 40150, + [SMALL_STATE(1154)] = 40160, + [SMALL_STATE(1155)] = 40173, + [SMALL_STATE(1156)] = 40186, + [SMALL_STATE(1157)] = 40199, + [SMALL_STATE(1158)] = 40212, + [SMALL_STATE(1159)] = 40225, + [SMALL_STATE(1160)] = 40238, + [SMALL_STATE(1161)] = 40251, + [SMALL_STATE(1162)] = 40264, + [SMALL_STATE(1163)] = 40277, + [SMALL_STATE(1164)] = 40290, + [SMALL_STATE(1165)] = 40303, + [SMALL_STATE(1166)] = 40316, + [SMALL_STATE(1167)] = 40329, + [SMALL_STATE(1168)] = 40340, + [SMALL_STATE(1169)] = 40353, + [SMALL_STATE(1170)] = 40366, + [SMALL_STATE(1171)] = 40379, + [SMALL_STATE(1172)] = 40392, + [SMALL_STATE(1173)] = 40405, + [SMALL_STATE(1174)] = 40418, + [SMALL_STATE(1175)] = 40431, + [SMALL_STATE(1176)] = 40444, + [SMALL_STATE(1177)] = 40457, + [SMALL_STATE(1178)] = 40470, + [SMALL_STATE(1179)] = 40483, + [SMALL_STATE(1180)] = 40496, + [SMALL_STATE(1181)] = 40509, + [SMALL_STATE(1182)] = 40522, + [SMALL_STATE(1183)] = 40535, + [SMALL_STATE(1184)] = 40548, + [SMALL_STATE(1185)] = 40561, + [SMALL_STATE(1186)] = 40574, + [SMALL_STATE(1187)] = 40587, + [SMALL_STATE(1188)] = 40600, + [SMALL_STATE(1189)] = 40613, + [SMALL_STATE(1190)] = 40622, + [SMALL_STATE(1191)] = 40635, + [SMALL_STATE(1192)] = 40648, + [SMALL_STATE(1193)] = 40661, + [SMALL_STATE(1194)] = 40674, + [SMALL_STATE(1195)] = 40687, + [SMALL_STATE(1196)] = 40700, + [SMALL_STATE(1197)] = 40713, + [SMALL_STATE(1198)] = 40726, + [SMALL_STATE(1199)] = 40739, + [SMALL_STATE(1200)] = 40752, + [SMALL_STATE(1201)] = 40765, + [SMALL_STATE(1202)] = 40778, + [SMALL_STATE(1203)] = 40791, + [SMALL_STATE(1204)] = 40802, + [SMALL_STATE(1205)] = 40815, + [SMALL_STATE(1206)] = 40824, + [SMALL_STATE(1207)] = 40837, + [SMALL_STATE(1208)] = 40850, + [SMALL_STATE(1209)] = 40863, + [SMALL_STATE(1210)] = 40876, + [SMALL_STATE(1211)] = 40889, + [SMALL_STATE(1212)] = 40902, + [SMALL_STATE(1213)] = 40915, + [SMALL_STATE(1214)] = 40928, + [SMALL_STATE(1215)] = 40938, + [SMALL_STATE(1216)] = 40946, + [SMALL_STATE(1217)] = 40954, + [SMALL_STATE(1218)] = 40964, + [SMALL_STATE(1219)] = 40974, + [SMALL_STATE(1220)] = 40984, + [SMALL_STATE(1221)] = 40992, + [SMALL_STATE(1222)] = 41002, + [SMALL_STATE(1223)] = 41012, + [SMALL_STATE(1224)] = 41022, + [SMALL_STATE(1225)] = 41032, + [SMALL_STATE(1226)] = 41042, + [SMALL_STATE(1227)] = 41052, + [SMALL_STATE(1228)] = 41060, + [SMALL_STATE(1229)] = 41070, + [SMALL_STATE(1230)] = 41080, + [SMALL_STATE(1231)] = 41090, + [SMALL_STATE(1232)] = 41100, + [SMALL_STATE(1233)] = 41108, + [SMALL_STATE(1234)] = 41118, + [SMALL_STATE(1235)] = 41128, + [SMALL_STATE(1236)] = 41136, + [SMALL_STATE(1237)] = 41144, + [SMALL_STATE(1238)] = 41152, + [SMALL_STATE(1239)] = 41162, + [SMALL_STATE(1240)] = 41170, + [SMALL_STATE(1241)] = 41180, + [SMALL_STATE(1242)] = 41190, + [SMALL_STATE(1243)] = 41198, + [SMALL_STATE(1244)] = 41206, + [SMALL_STATE(1245)] = 41216, + [SMALL_STATE(1246)] = 41224, + [SMALL_STATE(1247)] = 41234, + [SMALL_STATE(1248)] = 41244, + [SMALL_STATE(1249)] = 41254, + [SMALL_STATE(1250)] = 41262, + [SMALL_STATE(1251)] = 41270, + [SMALL_STATE(1252)] = 41280, + [SMALL_STATE(1253)] = 41290, + [SMALL_STATE(1254)] = 41300, + [SMALL_STATE(1255)] = 41310, + [SMALL_STATE(1256)] = 41320, + [SMALL_STATE(1257)] = 41330, + [SMALL_STATE(1258)] = 41338, + [SMALL_STATE(1259)] = 41348, + [SMALL_STATE(1260)] = 41356, + [SMALL_STATE(1261)] = 41366, + [SMALL_STATE(1262)] = 41374, + [SMALL_STATE(1263)] = 41384, + [SMALL_STATE(1264)] = 41394, + [SMALL_STATE(1265)] = 41404, + [SMALL_STATE(1266)] = 41414, + [SMALL_STATE(1267)] = 41424, + [SMALL_STATE(1268)] = 41434, + [SMALL_STATE(1269)] = 41444, + [SMALL_STATE(1270)] = 41452, + [SMALL_STATE(1271)] = 41462, + [SMALL_STATE(1272)] = 41472, + [SMALL_STATE(1273)] = 41482, + [SMALL_STATE(1274)] = 41492, + [SMALL_STATE(1275)] = 41502, + [SMALL_STATE(1276)] = 41509, + [SMALL_STATE(1277)] = 41516, + [SMALL_STATE(1278)] = 41523, + [SMALL_STATE(1279)] = 41530, + [SMALL_STATE(1280)] = 41537, + [SMALL_STATE(1281)] = 41544, + [SMALL_STATE(1282)] = 41551, + [SMALL_STATE(1283)] = 41558, + [SMALL_STATE(1284)] = 41565, + [SMALL_STATE(1285)] = 41572, + [SMALL_STATE(1286)] = 41579, + [SMALL_STATE(1287)] = 41586, + [SMALL_STATE(1288)] = 41593, + [SMALL_STATE(1289)] = 41600, + [SMALL_STATE(1290)] = 41607, + [SMALL_STATE(1291)] = 41614, + [SMALL_STATE(1292)] = 41621, + [SMALL_STATE(1293)] = 41628, + [SMALL_STATE(1294)] = 41635, + [SMALL_STATE(1295)] = 41642, + [SMALL_STATE(1296)] = 41649, + [SMALL_STATE(1297)] = 41656, + [SMALL_STATE(1298)] = 41663, + [SMALL_STATE(1299)] = 41670, + [SMALL_STATE(1300)] = 41677, + [SMALL_STATE(1301)] = 41684, + [SMALL_STATE(1302)] = 41691, + [SMALL_STATE(1303)] = 41698, + [SMALL_STATE(1304)] = 41705, + [SMALL_STATE(1305)] = 41712, + [SMALL_STATE(1306)] = 41719, + [SMALL_STATE(1307)] = 41726, + [SMALL_STATE(1308)] = 41733, + [SMALL_STATE(1309)] = 41740, + [SMALL_STATE(1310)] = 41747, + [SMALL_STATE(1311)] = 41754, + [SMALL_STATE(1312)] = 41761, + [SMALL_STATE(1313)] = 41768, + [SMALL_STATE(1314)] = 41775, + [SMALL_STATE(1315)] = 41782, + [SMALL_STATE(1316)] = 41789, + [SMALL_STATE(1317)] = 41796, + [SMALL_STATE(1318)] = 41803, + [SMALL_STATE(1319)] = 41810, + [SMALL_STATE(1320)] = 41817, + [SMALL_STATE(1321)] = 41824, + [SMALL_STATE(1322)] = 41831, + [SMALL_STATE(1323)] = 41838, + [SMALL_STATE(1324)] = 41845, + [SMALL_STATE(1325)] = 41852, + [SMALL_STATE(1326)] = 41859, + [SMALL_STATE(1327)] = 41866, + [SMALL_STATE(1328)] = 41873, + [SMALL_STATE(1329)] = 41880, + [SMALL_STATE(1330)] = 41887, + [SMALL_STATE(1331)] = 41894, + [SMALL_STATE(1332)] = 41901, + [SMALL_STATE(1333)] = 41908, + [SMALL_STATE(1334)] = 41915, + [SMALL_STATE(1335)] = 41922, + [SMALL_STATE(1336)] = 41929, + [SMALL_STATE(1337)] = 41936, + [SMALL_STATE(1338)] = 41943, + [SMALL_STATE(1339)] = 41950, + [SMALL_STATE(1340)] = 41957, + [SMALL_STATE(1341)] = 41964, + [SMALL_STATE(1342)] = 41971, + [SMALL_STATE(1343)] = 41978, + [SMALL_STATE(1344)] = 41985, + [SMALL_STATE(1345)] = 41992, + [SMALL_STATE(1346)] = 41999, + [SMALL_STATE(1347)] = 42006, + [SMALL_STATE(1348)] = 42013, + [SMALL_STATE(1349)] = 42020, + [SMALL_STATE(1350)] = 42027, + [SMALL_STATE(1351)] = 42034, + [SMALL_STATE(1352)] = 42041, + [SMALL_STATE(1353)] = 42048, + [SMALL_STATE(1354)] = 42055, + [SMALL_STATE(1355)] = 42062, + [SMALL_STATE(1356)] = 42069, + [SMALL_STATE(1357)] = 42076, + [SMALL_STATE(1358)] = 42083, + [SMALL_STATE(1359)] = 42090, + [SMALL_STATE(1360)] = 42097, + [SMALL_STATE(1361)] = 42104, + [SMALL_STATE(1362)] = 42111, + [SMALL_STATE(1363)] = 42118, + [SMALL_STATE(1364)] = 42125, + [SMALL_STATE(1365)] = 42132, + [SMALL_STATE(1366)] = 42139, + [SMALL_STATE(1367)] = 42146, + [SMALL_STATE(1368)] = 42153, + [SMALL_STATE(1369)] = 42160, + [SMALL_STATE(1370)] = 42167, + [SMALL_STATE(1371)] = 42174, + [SMALL_STATE(1372)] = 42181, + [SMALL_STATE(1373)] = 42188, + [SMALL_STATE(1374)] = 42195, + [SMALL_STATE(1375)] = 42202, + [SMALL_STATE(1376)] = 42209, + [SMALL_STATE(1377)] = 42216, + [SMALL_STATE(1378)] = 42223, + [SMALL_STATE(1379)] = 42230, + [SMALL_STATE(1380)] = 42237, + [SMALL_STATE(1381)] = 42244, + [SMALL_STATE(1382)] = 42251, + [SMALL_STATE(1383)] = 42258, + [SMALL_STATE(1384)] = 42265, + [SMALL_STATE(1385)] = 42272, + [SMALL_STATE(1386)] = 42279, + [SMALL_STATE(1387)] = 42286, + [SMALL_STATE(1388)] = 42293, + [SMALL_STATE(1389)] = 42300, + [SMALL_STATE(1390)] = 42307, + [SMALL_STATE(1391)] = 42314, + [SMALL_STATE(1392)] = 42321, + [SMALL_STATE(1393)] = 42328, + [SMALL_STATE(1394)] = 42335, + [SMALL_STATE(1395)] = 42342, + [SMALL_STATE(1396)] = 42349, + [SMALL_STATE(1397)] = 42356, + [SMALL_STATE(1398)] = 42363, + [SMALL_STATE(1399)] = 42370, + [SMALL_STATE(1400)] = 42377, + [SMALL_STATE(1401)] = 42384, + [SMALL_STATE(1402)] = 42391, + [SMALL_STATE(1403)] = 42398, + [SMALL_STATE(1404)] = 42405, + [SMALL_STATE(1405)] = 42412, + [SMALL_STATE(1406)] = 42419, + [SMALL_STATE(1407)] = 42426, + [SMALL_STATE(1408)] = 42433, + [SMALL_STATE(1409)] = 42440, + [SMALL_STATE(1410)] = 42447, + [SMALL_STATE(1411)] = 42454, + [SMALL_STATE(1412)] = 42461, + [SMALL_STATE(1413)] = 42468, + [SMALL_STATE(1414)] = 42475, + [SMALL_STATE(1415)] = 42482, + [SMALL_STATE(1416)] = 42489, + [SMALL_STATE(1417)] = 42496, + [SMALL_STATE(1418)] = 42503, + [SMALL_STATE(1419)] = 42510, + [SMALL_STATE(1420)] = 42517, + [SMALL_STATE(1421)] = 42524, + [SMALL_STATE(1422)] = 42531, + [SMALL_STATE(1423)] = 42538, + [SMALL_STATE(1424)] = 42545, + [SMALL_STATE(1425)] = 42552, + [SMALL_STATE(1426)] = 42559, + [SMALL_STATE(1427)] = 42566, + [SMALL_STATE(1428)] = 42573, + [SMALL_STATE(1429)] = 42580, + [SMALL_STATE(1430)] = 42587, + [SMALL_STATE(1431)] = 42594, + [SMALL_STATE(1432)] = 42601, + [SMALL_STATE(1433)] = 42608, + [SMALL_STATE(1434)] = 42615, + [SMALL_STATE(1435)] = 42622, + [SMALL_STATE(1436)] = 42629, + [SMALL_STATE(1437)] = 42636, + [SMALL_STATE(1438)] = 42643, + [SMALL_STATE(1439)] = 42650, + [SMALL_STATE(1440)] = 42657, + [SMALL_STATE(1441)] = 42664, + [SMALL_STATE(1442)] = 42671, + [SMALL_STATE(1443)] = 42678, + [SMALL_STATE(1444)] = 42685, + [SMALL_STATE(1445)] = 42692, + [SMALL_STATE(1446)] = 42699, + [SMALL_STATE(1447)] = 42706, + [SMALL_STATE(1448)] = 42713, + [SMALL_STATE(1449)] = 42720, + [SMALL_STATE(1450)] = 42727, + [SMALL_STATE(1451)] = 42734, + [SMALL_STATE(1452)] = 42741, + [SMALL_STATE(1453)] = 42748, + [SMALL_STATE(1454)] = 42755, + [SMALL_STATE(1455)] = 42762, + [SMALL_STATE(1456)] = 42769, + [SMALL_STATE(1457)] = 42776, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -73365,1564 +74014,1566 @@ 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(404), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(402), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1064), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1361), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(904), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [99] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(407), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1069), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1369), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(918), [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1362), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1230), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(377), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(520), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(520), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(534), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(72), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(856), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(791), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1445), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1442), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(864), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(685), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(683), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(767), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(865), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1149), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1108), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1109), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1208), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(584), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1382), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1265), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(315), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1447), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(439), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1380), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1379), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1368), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(595), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(594), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(592), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1250), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1116), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(592), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(399), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1052), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1405), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(890), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1388), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1251), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(182), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(852), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(780), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1215), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1219), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(519), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1303), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1216), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(307), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1449), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(453), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1293), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1302), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1392), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(404), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1051), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1391), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(896), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1448), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1234), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(147), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(857), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(757), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1258), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(603), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1434), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1255), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(361), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1431), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(466), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1430), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1428), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1427), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(398), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1061), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1300), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(931), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1301), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1221), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(149), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(854), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(738), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1239), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1264), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(557), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1365), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1243), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(335), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1444), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(441), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1370), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1375), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1307), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1370), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1233), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(381), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(507), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(507), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(513), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(74), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(859), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(830), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1271), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1450), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(883), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(676), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(677), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(776), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(874), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1157), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1117), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1116), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1231), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(548), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1390), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1274), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(327), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1455), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(466), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1388), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1387), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1376), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(611), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(605), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(572), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1259), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1141), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(572), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(412), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1068), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1308), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(943), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1309), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1228), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(159), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(868), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(808), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1273), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(531), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1373), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1252), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(330), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1452), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(450), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1378), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1383), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1315), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(409), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1067), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1413), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(944), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1396), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(141), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(867), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(825), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1223), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1222), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(554), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1302), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1224), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(315), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1457), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(451), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1287), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1289), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1400), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(410), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1061), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1399), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(900), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1456), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1241), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(136), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(865), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(786), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1246), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1267), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(546), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1442), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1264), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(373), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1439), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(457), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1438), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1436), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1435), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(397), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(377), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(520), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(520), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(534), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(72), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(856), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(685), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1445), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1263), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1442), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(683), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(767), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(865), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1149), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1108), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1109), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1208), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1247), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1265), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(315), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1447), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(439), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1380), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1379), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1368), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(595), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(594), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(592), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1250), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1116), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(592), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(403), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(182), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(852), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1215), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1219), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1216), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(307), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1449), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(453), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1293), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1302), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1392), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(400), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(149), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(854), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1239), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1264), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1243), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(335), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1444), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(441), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1370), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1375), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1307), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(401), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(147), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(857), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1260), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1258), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1255), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(361), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1431), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(466), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1430), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1428), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1427), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(381), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(507), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(507), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(74), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(859), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(676), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1453), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1271), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1450), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(677), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(776), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(874), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1157), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1117), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1116), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1231), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1256), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1274), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(327), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1455), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(466), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1388), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1387), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1376), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(611), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(605), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(572), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1259), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1141), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(572), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(408), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(136), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(865), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1246), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1267), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1264), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(373), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1439), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(457), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1438), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1436), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1435), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(411), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(141), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(867), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1223), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1222), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1224), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(315), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1457), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(451), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1287), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1289), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1400), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(405), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(159), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(868), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1248), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1273), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1252), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(330), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1452), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(450), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1378), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1383), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1315), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 74), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 74), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 58), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 58), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 82), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 82), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 80), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 80), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 79), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 79), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 78), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 78), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 70), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 70), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 75), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 75), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 80), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 80), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 70), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 70), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_non_case_statement, 2), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_non_case_statement, 2), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 78), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 78), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 79), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 79), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 58), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 58), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 59), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 59), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 61), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 61), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 62), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 62), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 69), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 69), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 70), [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 70), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 61), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 61), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 62), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 62), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 69), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 69), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 66), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 66), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 74), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 74), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 75), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 75), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 82), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 82), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 51), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 51), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 66), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 66), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 54), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 54), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 54), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 54), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1240] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(848), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(862), - [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1406), - [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(942), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1335), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1254), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(685), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1445), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1263), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1442), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(683), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(767), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(865), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1149), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1108), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1109), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1407), - [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(919), - [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1377), - [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1257), - [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1387), - [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(924), - [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1359), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1213), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1244] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(854), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(894), + [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1414), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(926), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1343), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1263), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(676), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1453), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1244), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1450), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(677), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(776), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(874), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1157), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1117), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1116), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1415), + [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(902), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1385), + [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1266), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1116), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1395), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(924), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1367), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1221), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1141), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1244), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(685), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1445), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1263), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1442), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(683), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(659), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1253), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(676), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1453), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1244), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1450), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(677), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(667), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 73), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 60), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(867), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(773), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 73), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(771), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(890), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(848), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(683), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2410] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(848), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(995), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(996), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1445), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 71), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1262), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 63), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 63), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 71), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 63), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 71), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 64), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 64), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 72), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 72), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 72), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 72), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 72), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 72), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(542), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1276), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 57), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(677), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(854), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2418] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(854), + [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1003), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1004), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1453), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 71), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1271), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 71), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 71), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 64), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 64), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 72), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 72), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 72), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 72), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(587), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1284), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 72), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 72), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 57), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 64), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 67), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 72), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 64), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 67), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 56), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1140), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1140), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1024), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1036), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 72), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1149), + [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1149), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 56), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1021), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1041), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1212), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(411), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(575), - [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(921), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1214), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1249), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(623), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 68), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1007), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 54), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 66), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 54), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 66), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3319] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1272), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(570), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(418), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(915), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1216), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(633), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1258), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 68), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1007), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 54), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 66), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 54), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 66), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3323] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), }; #ifdef __cplusplus diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index e6e3cdd..a3a33af 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -267,6 +267,9 @@ Attributes void f() { [[a]] switch (b) { [[c]] case 1: {} + case 2: + [[fallthrough]]; + default: } [[a]] while (true) {} [[a]] if (true) {} @@ -284,17 +287,25 @@ void f() { (function_definition (primitive_type) (function_declarator (identifier) (parameter_list)) (compound_statement - (attributed_statement (attribute_declaration (attribute (identifier))) - (switch_statement - (parenthesized_expression (identifier)) - (compound_statement - (attributed_statement (attribute_declaration (attribute (identifier))) (case_statement (number_literal) (compound_statement)))))) - (attributed_statement (attribute_declaration (attribute (identifier))) (while_statement (parenthesized_expression (true)) (compound_statement))) - (attributed_statement (attribute_declaration (attribute (identifier))) (if_statement (parenthesized_expression (true)) (compound_statement))) - (attributed_statement (attribute_declaration (attribute (identifier))) (for_statement (compound_statement))) - (attributed_statement (attribute_declaration (attribute (identifier))) (return_statement)) - (attributed_statement (attribute_declaration (attribute (identifier))) (expression_statement (identifier))) - (attributed_statement (attribute_declaration (attribute (identifier))) (expression_statement)) - (attributed_statement (attribute_declaration (attribute (identifier))) (labeled_statement (statement_identifier) (compound_statement))) - (attributed_statement (attribute_declaration (attribute (identifier))) (goto_statement (statement_identifier)))))) + (attributed_statement + (attribute_declaration (attribute (identifier))) + (switch_statement + (parenthesized_expression (identifier)) + (compound_statement + (attributed_statement + (attribute_declaration (attribute (identifier))) + (case_statement (number_literal) (compound_statement))) + (case_statement (number_literal) + (attributed_statement + (attribute_declaration (attribute (identifier))) + (expression_statement))) + (case_statement)))) + (attributed_statement (attribute_declaration (attribute (identifier))) (while_statement (parenthesized_expression (true)) (compound_statement))) + (attributed_statement (attribute_declaration (attribute (identifier))) (if_statement (parenthesized_expression (true)) (compound_statement))) + (attributed_statement (attribute_declaration (attribute (identifier))) (for_statement (compound_statement))) + (attributed_statement (attribute_declaration (attribute (identifier))) (return_statement)) + (attributed_statement (attribute_declaration (attribute (identifier))) (expression_statement (identifier))) + (attributed_statement (attribute_declaration (attribute (identifier))) (expression_statement)) + (attributed_statement (attribute_declaration (attribute (identifier))) (labeled_statement (statement_identifier) (compound_statement))) + (attributed_statement (attribute_declaration (attribute (identifier))) (goto_statement (statement_identifier))))))