From f71e80b9f20c3968c131518ae8d272a3cf81a60b Mon Sep 17 00:00:00 2001 From: John Drouhard Date: Sat, 18 Sep 2021 14:26:00 -0500 Subject: [PATCH] Extract "..." into a named node called variadic_parameter. Fixes #73 --- grammar.js | 6 +- src/grammar.json | 17 +- src/node-types.json | 9 + src/parser.c | 39573 +++++++++++++++++---------------- test/corpus/declarations.txt | 4 +- 5 files changed, 19825 insertions(+), 19784 deletions(-) diff --git a/grammar.js b/grammar.js index e48e48a215..d0435a2dde 100644 --- a/grammar.js +++ b/grammar.js @@ -576,9 +576,13 @@ module.exports = grammar({ optional(seq('=', field('value', $._expression))) ), + variadic_parameter: $ => seq( + '...', + ), + parameter_list: $ => seq( '(', - commaSep(choice($.parameter_declaration, '...')), + commaSep(choice($.parameter_declaration, $.variadic_parameter)), ')' ), diff --git a/src/grammar.json b/src/grammar.json index d525fed310..0fc1bf995e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3672,6 +3672,15 @@ } ] }, + "variadic_parameter": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + } + ] + }, "parameter_list": { "type": "SEQ", "members": [ @@ -3693,8 +3702,8 @@ "name": "parameter_declaration" }, { - "type": "STRING", - "value": "..." + "type": "SYMBOL", + "name": "variadic_parameter" } ] }, @@ -3715,8 +3724,8 @@ "name": "parameter_declaration" }, { - "type": "STRING", - "value": "..." + "type": "SYMBOL", + "name": "variadic_parameter" } ] } diff --git a/src/node-types.json b/src/node-types.json index 381e3aceb8..98d3edbd80 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2035,6 +2035,10 @@ { "type": "parameter_declaration", "named": true + }, + { + "type": "variadic_parameter", + "named": true } ] } @@ -3138,6 +3142,11 @@ } } }, + { + "type": "variadic_parameter", + "named": true, + "fields": {} + }, { "type": "while_statement", "named": true, diff --git a/src/parser.c b/src/parser.c index 121f1d0a29..d33ac10075 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1458 +#define STATE_COUNT 1459 #define LARGE_STATE_COUNT 386 -#define SYMBOL_COUNT 266 +#define SYMBOL_COUNT 267 #define ALIAS_COUNT 3 #define TOKEN_COUNT 128 #define EXTERNAL_TOKEN_COUNT 0 @@ -218,73 +218,74 @@ enum { sym_field_declaration = 199, sym_bitfield_clause = 200, sym_enumerator = 201, - sym_parameter_list = 202, - sym_parameter_declaration = 203, - sym_attributed_statement = 204, - 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, + sym_variadic_parameter = 202, + sym_parameter_list = 203, + sym_parameter_declaration = 204, + sym_attributed_statement = 205, + sym_attributed_non_case_statement = 206, + sym_labeled_statement = 207, + sym_expression_statement = 208, + sym_if_statement = 209, + sym_switch_statement = 210, + sym_case_statement = 211, + sym_while_statement = 212, + sym_do_statement = 213, + sym_for_statement = 214, + sym_return_statement = 215, + sym_break_statement = 216, + sym_continue_statement = 217, + sym_goto_statement = 218, + sym__expression = 219, + sym_comma_expression = 220, + sym_conditional_expression = 221, + sym_assignment_expression = 222, + sym_pointer_expression = 223, + sym_unary_expression = 224, + sym_binary_expression = 225, + sym_update_expression = 226, + sym_cast_expression = 227, + sym_type_descriptor = 228, + sym_sizeof_expression = 229, + sym_subscript_expression = 230, + sym_call_expression = 231, + sym_argument_list = 232, + sym_field_expression = 233, + sym_compound_literal_expression = 234, + sym_parenthesized_expression = 235, + sym_initializer_list = 236, + sym_initializer_pair = 237, + sym_subscript_designator = 238, + sym_field_designator = 239, + sym_char_literal = 240, + sym_concatenated_string = 241, + sym_string_literal = 242, + sym__empty_declaration = 243, + sym_macro_type_specifier = 244, + aux_sym_translation_unit_repeat1 = 245, + aux_sym_preproc_params_repeat1 = 246, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 247, + aux_sym_preproc_argument_list_repeat1 = 248, + aux_sym_declaration_repeat1 = 249, + aux_sym_type_definition_repeat1 = 250, + aux_sym_type_definition_repeat2 = 251, + aux_sym__declaration_specifiers_repeat1 = 252, + aux_sym_attribute_declaration_repeat1 = 253, + aux_sym_attributed_declarator_repeat1 = 254, + aux_sym_pointer_declarator_repeat1 = 255, + aux_sym_function_declarator_repeat1 = 256, + aux_sym_sized_type_specifier_repeat1 = 257, + aux_sym_enumerator_list_repeat1 = 258, + aux_sym_field_declaration_repeat1 = 259, + aux_sym_parameter_list_repeat1 = 260, + aux_sym_case_statement_repeat1 = 261, + aux_sym_argument_list_repeat1 = 262, + aux_sym_initializer_list_repeat1 = 263, + aux_sym_initializer_pair_repeat1 = 264, + aux_sym_concatenated_string_repeat1 = 265, + aux_sym_string_literal_repeat1 = 266, + alias_sym_field_identifier = 267, + alias_sym_statement_identifier = 268, + alias_sym_type_identifier = 269, }; static const char * const ts_symbol_names[] = { @@ -490,6 +491,7 @@ static const char * const ts_symbol_names[] = { [sym_field_declaration] = "field_declaration", [sym_bitfield_clause] = "bitfield_clause", [sym_enumerator] = "enumerator", + [sym_variadic_parameter] = "variadic_parameter", [sym_parameter_list] = "parameter_list", [sym_parameter_declaration] = "parameter_declaration", [sym_attributed_statement] = "attributed_statement", @@ -762,6 +764,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_field_declaration] = sym_field_declaration, [sym_bitfield_clause] = sym_bitfield_clause, [sym_enumerator] = sym_enumerator, + [sym_variadic_parameter] = sym_variadic_parameter, [sym_parameter_list] = sym_parameter_list, [sym_parameter_declaration] = sym_parameter_declaration, [sym_attributed_statement] = sym_attributed_statement, @@ -1645,6 +1648,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_variadic_parameter] = { + .visible = true, + .named = true, + }, [sym_parameter_list] = { .visible = true, .named = true, @@ -2391,17 +2398,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '\n') SKIP(34) + if (lookahead == '\n') SKIP(32) END_STATE(); case 10: - if (lookahead == '\n') SKIP(34) + if (lookahead == '\n') SKIP(32) if (lookahead == '\r') SKIP(9) END_STATE(); case 11: - if (lookahead == '\n') SKIP(32) + if (lookahead == '\n') SKIP(34) END_STATE(); case 12: - if (lookahead == '\n') SKIP(32) + if (lookahead == '\n') SKIP(34) if (lookahead == '\r') SKIP(11) END_STATE(); case 13: @@ -2412,20 +2419,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(13) END_STATE(); case 15: - if (lookahead == '\n') SKIP(30) + if (lookahead == '\n') SKIP(17) END_STATE(); case 16: - if (lookahead == '\n') SKIP(30) + if (lookahead == '\n') SKIP(17) if (lookahead == '\r') SKIP(15) END_STATE(); case 17: - if (lookahead == '\n') SKIP(19) - END_STATE(); - case 18: - if (lookahead == '\n') SKIP(19) - if (lookahead == '\r') SKIP(17) - END_STATE(); - case 19: if (lookahead == '\n') ADVANCE(86); if (lookahead == '!') ADVANCE(46); if (lookahead == '%') ADVANCE(156); @@ -2438,12 +2438,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(174); if (lookahead == '=') ADVANCE(47); if (lookahead == '>') ADVANCE(170); - if (lookahead == '\\') SKIP(18) + if (lookahead == '\\') SKIP(16) if (lookahead == '^') ADVANCE(162); if (lookahead == '|') ADVANCE(161); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(19) + lookahead == ' ') SKIP(17) + END_STATE(); + case 18: + if (lookahead == '\n') SKIP(30) + END_STATE(); + case 19: + if (lookahead == '\n') SKIP(30) + if (lookahead == '\r') SKIP(18) END_STATE(); case 20: if (lookahead == '\n') SKIP(35) @@ -2453,25 +2460,6 @@ 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); @@ -2481,7 +2469,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(128); if (lookahead != 0) ADVANCE(132); END_STATE(); - case 25: + case 23: if (lookahead == '\n') ADVANCE(87); if (lookahead == '/') ADVANCE(131); if (lookahead == '\\') ADVANCE(129); @@ -2490,6 +2478,25 @@ 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); @@ -2616,7 +2623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(213); if (lookahead == 'L') ADVANCE(257); if (lookahead == 'U') ADVANCE(258); - if (lookahead == '\\') SKIP(16) + if (lookahead == '\\') SKIP(19) if (lookahead == 'u') ADVANCE(259); if (lookahead == '~') ADVANCE(141); if (lookahead == '\t' || @@ -2683,9 +2690,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(169); if (lookahead == '?') ADVANCE(192); if (lookahead == '[') ADVANCE(186); - if (lookahead == '\\') SKIP(12) - if (lookahead == ']') ADVANCE(51); + if (lookahead == '\\') SKIP(10) + if (lookahead == ']') ADVANCE(187); if (lookahead == '^') ADVANCE(163); + if (lookahead == '{') ADVANCE(183); if (lookahead == '|') ADVANCE(160); if (lookahead == '}') ADVANCE(184); if (lookahead == '\t' || @@ -2747,10 +2755,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(169); if (lookahead == '?') ADVANCE(192); if (lookahead == '[') ADVANCE(186); - if (lookahead == '\\') SKIP(10) - if (lookahead == ']') ADVANCE(187); + if (lookahead == '\\') SKIP(12) + if (lookahead == ']') ADVANCE(51); if (lookahead == '^') ADVANCE(163); - if (lookahead == '{') ADVANCE(183); if (lookahead == '|') ADVANCE(160); if (lookahead == '}') ADVANCE(184); if (lookahead == '\t' || @@ -2779,7 +2786,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 36: if (lookahead == '"') ADVANCE(237); if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2818,7 +2825,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 44: if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4036,7 +4043,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 232: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); END_STATE(); case 233: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -4102,7 +4109,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 244: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); END_STATE(); case 245: ACCEPT_TOKEN(sym_escape_sequence); @@ -5637,14 +5644,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [261] = {.lex_state = 83}, [262] = {.lex_state = 83}, [263] = {.lex_state = 29}, - [264] = {.lex_state = 83}, - [265] = {.lex_state = 29}, + [264] = {.lex_state = 29}, + [265] = {.lex_state = 83}, [266] = {.lex_state = 83}, [267] = {.lex_state = 29}, [268] = {.lex_state = 83}, [269] = {.lex_state = 29}, [270] = {.lex_state = 83}, - [271] = {.lex_state = 29}, + [271] = {.lex_state = 83}, [272] = {.lex_state = 83}, [273] = {.lex_state = 29}, [274] = {.lex_state = 83}, @@ -5671,13 +5678,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [295] = {.lex_state = 83}, [296] = {.lex_state = 83}, [297] = {.lex_state = 83}, - [298] = {.lex_state = 83}, + [298] = {.lex_state = 29}, [299] = {.lex_state = 83}, [300] = {.lex_state = 29}, - [301] = {.lex_state = 29}, - [302] = {.lex_state = 83}, - [303] = {.lex_state = 83}, - [304] = {.lex_state = 29}, + [301] = {.lex_state = 83}, + [302] = {.lex_state = 29}, + [303] = {.lex_state = 29}, + [304] = {.lex_state = 83}, [305] = {.lex_state = 83}, [306] = {.lex_state = 83}, [307] = {.lex_state = 83}, @@ -5760,8 +5767,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [384] = {.lex_state = 83}, [385] = {.lex_state = 83}, [386] = {.lex_state = 83}, - [387] = {.lex_state = 27}, - [388] = {.lex_state = 83}, + [387] = {.lex_state = 83}, + [388] = {.lex_state = 27}, [389] = {.lex_state = 83}, [390] = {.lex_state = 33}, [391] = {.lex_state = 33}, @@ -5778,46 +5785,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 34}, - [409] = {.lex_state = 34}, - [410] = {.lex_state = 34}, - [411] = {.lex_state = 34}, - [412] = {.lex_state = 34}, + [405] = {.lex_state = 32}, + [406] = {.lex_state = 32}, + [407] = {.lex_state = 32}, + [408] = {.lex_state = 32}, + [409] = {.lex_state = 32}, + [410] = {.lex_state = 32}, + [411] = {.lex_state = 32}, + [412] = {.lex_state = 32}, [413] = {.lex_state = 83}, - [414] = {.lex_state = 33}, - [415] = {.lex_state = 34}, + [414] = {.lex_state = 32}, + [415] = {.lex_state = 33}, [416] = {.lex_state = 83}, [417] = {.lex_state = 83}, - [418] = {.lex_state = 83}, - [419] = {.lex_state = 34}, - [420] = {.lex_state = 32}, - [421] = {.lex_state = 34}, + [418] = {.lex_state = 32}, + [419] = {.lex_state = 32}, + [420] = {.lex_state = 34}, + [421] = {.lex_state = 83}, [422] = {.lex_state = 34}, [423] = {.lex_state = 32}, - [424] = {.lex_state = 32}, + [424] = {.lex_state = 34}, [425] = {.lex_state = 83}, - [426] = {.lex_state = 31}, + [426] = {.lex_state = 33}, [427] = {.lex_state = 83}, [428] = {.lex_state = 83}, - [429] = {.lex_state = 31}, + [429] = {.lex_state = 83}, [430] = {.lex_state = 83}, - [431] = {.lex_state = 83}, - [432] = {.lex_state = 31}, + [431] = {.lex_state = 31}, + [432] = {.lex_state = 83}, [433] = {.lex_state = 83}, [434] = {.lex_state = 83}, - [435] = {.lex_state = 83}, - [436] = {.lex_state = 83}, + [435] = {.lex_state = 31}, + [436] = {.lex_state = 31}, [437] = {.lex_state = 83}, - [438] = {.lex_state = 33}, - [439] = {.lex_state = 33}, + [438] = {.lex_state = 83}, + [439] = {.lex_state = 31}, [440] = {.lex_state = 33}, [441] = {.lex_state = 33}, [442] = {.lex_state = 33}, [443] = {.lex_state = 31}, - [444] = {.lex_state = 31}, + [444] = {.lex_state = 33}, [445] = {.lex_state = 83}, [446] = {.lex_state = 83}, [447] = {.lex_state = 83}, @@ -5867,13 +5874,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [491] = {.lex_state = 83}, [492] = {.lex_state = 83}, [493] = {.lex_state = 83}, - [494] = {.lex_state = 83}, + [494] = {.lex_state = 32}, [495] = {.lex_state = 83}, [496] = {.lex_state = 83}, [497] = {.lex_state = 83}, [498] = {.lex_state = 83}, [499] = {.lex_state = 83}, - [500] = {.lex_state = 34}, + [500] = {.lex_state = 83}, [501] = {.lex_state = 83}, [502] = {.lex_state = 83}, [503] = {.lex_state = 83}, @@ -5889,30 +5896,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [513] = {.lex_state = 83}, [514] = {.lex_state = 83}, [515] = {.lex_state = 83}, - [516] = {.lex_state = 83}, - [517] = {.lex_state = 34}, - [518] = {.lex_state = 32}, - [519] = {.lex_state = 34}, + [516] = {.lex_state = 32}, + [517] = {.lex_state = 83}, + [518] = {.lex_state = 83}, + [519] = {.lex_state = 83}, [520] = {.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 = 34}, - [527] = {.lex_state = 34}, - [528] = {.lex_state = 34}, - [529] = {.lex_state = 34}, - [530] = {.lex_state = 34}, - [531] = {.lex_state = 83}, - [532] = {.lex_state = 34}, - [533] = {.lex_state = 34}, - [534] = {.lex_state = 83}, + [523] = {.lex_state = 83}, + [524] = {.lex_state = 83}, + [525] = {.lex_state = 83}, + [526] = {.lex_state = 83}, + [527] = {.lex_state = 83}, + [528] = {.lex_state = 83}, + [529] = {.lex_state = 83}, + [530] = {.lex_state = 83}, + [531] = {.lex_state = 34}, + [532] = {.lex_state = 32}, + [533] = {.lex_state = 83}, + [534] = {.lex_state = 32}, [535] = {.lex_state = 83}, [536] = {.lex_state = 83}, - [537] = {.lex_state = 83}, - [538] = {.lex_state = 34}, - [539] = {.lex_state = 83}, + [537] = {.lex_state = 32}, + [538] = {.lex_state = 32}, + [539] = {.lex_state = 32}, [540] = {.lex_state = 83}, [541] = {.lex_state = 83}, [542] = {.lex_state = 83}, @@ -5920,11 +5927,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [544] = {.lex_state = 83}, [545] = {.lex_state = 83}, [546] = {.lex_state = 83}, - [547] = {.lex_state = 34}, + [547] = {.lex_state = 83}, [548] = {.lex_state = 83}, - [549] = {.lex_state = 34}, - [550] = {.lex_state = 83}, - [551] = {.lex_state = 83}, + [549] = {.lex_state = 32}, + [550] = {.lex_state = 32}, + [551] = {.lex_state = 32}, [552] = {.lex_state = 83}, [553] = {.lex_state = 83}, [554] = {.lex_state = 83}, @@ -5935,89 +5942,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [559] = {.lex_state = 32}, [560] = {.lex_state = 83}, [561] = {.lex_state = 83}, - [562] = {.lex_state = 34}, - [563] = {.lex_state = 34}, + [562] = {.lex_state = 83}, + [563] = {.lex_state = 32}, [564] = {.lex_state = 83}, - [565] = {.lex_state = 83}, - [566] = {.lex_state = 34}, - [567] = {.lex_state = 83}, + [565] = {.lex_state = 32}, + [566] = {.lex_state = 83}, + [567] = {.lex_state = 34}, [568] = {.lex_state = 83}, - [569] = {.lex_state = 32}, + [569] = {.lex_state = 83}, [570] = {.lex_state = 83}, [571] = {.lex_state = 83}, - [572] = {.lex_state = 34}, - [573] = {.lex_state = 34}, + [572] = {.lex_state = 83}, + [573] = {.lex_state = 83}, [574] = {.lex_state = 83}, - [575] = {.lex_state = 83}, - [576] = {.lex_state = 83}, + [575] = {.lex_state = 32}, + [576] = {.lex_state = 32}, [577] = {.lex_state = 83}, - [578] = {.lex_state = 34}, - [579] = {.lex_state = 83}, + [578] = {.lex_state = 83}, + [579] = {.lex_state = 32}, [580] = {.lex_state = 83}, - [581] = {.lex_state = 83}, + [581] = {.lex_state = 32}, [582] = {.lex_state = 83}, - [583] = {.lex_state = 34}, - [584] = {.lex_state = 83}, - [585] = {.lex_state = 83}, + [583] = {.lex_state = 83}, + [584] = {.lex_state = 32}, + [585] = {.lex_state = 32}, [586] = {.lex_state = 83}, - [587] = {.lex_state = 83}, - [588] = {.lex_state = 83}, - [589] = {.lex_state = 83}, + [587] = {.lex_state = 32}, + [588] = {.lex_state = 32}, + [589] = {.lex_state = 32}, [590] = {.lex_state = 83}, - [591] = {.lex_state = 83}, - [592] = {.lex_state = 83}, + [591] = {.lex_state = 32}, + [592] = {.lex_state = 32}, [593] = {.lex_state = 83}, [594] = {.lex_state = 83}, [595] = {.lex_state = 83}, - [596] = {.lex_state = 83}, + [596] = {.lex_state = 32}, [597] = {.lex_state = 83}, [598] = {.lex_state = 83}, [599] = {.lex_state = 83}, - [600] = {.lex_state = 34}, + [600] = {.lex_state = 32}, [601] = {.lex_state = 83}, - [602] = {.lex_state = 83}, - [603] = {.lex_state = 34}, - [604] = {.lex_state = 34}, - [605] = {.lex_state = 83}, + [602] = {.lex_state = 32}, + [603] = {.lex_state = 83}, + [604] = {.lex_state = 83}, + [605] = {.lex_state = 32}, [606] = {.lex_state = 83}, - [607] = {.lex_state = 34}, - [608] = {.lex_state = 34}, - [609] = {.lex_state = 83}, - [610] = {.lex_state = 34}, + [607] = {.lex_state = 32}, + [608] = {.lex_state = 32}, + [609] = {.lex_state = 32}, + [610] = {.lex_state = 83}, [611] = {.lex_state = 83}, - [612] = {.lex_state = 34}, + [612] = {.lex_state = 83}, [613] = {.lex_state = 83}, - [614] = {.lex_state = 34}, + [614] = {.lex_state = 32}, [615] = {.lex_state = 33}, - [616] = {.lex_state = 34}, + [616] = {.lex_state = 32}, [617] = {.lex_state = 83}, - [618] = {.lex_state = 34}, - [619] = {.lex_state = 34}, - [620] = {.lex_state = 83}, - [621] = {.lex_state = 34}, - [622] = {.lex_state = 34}, - [623] = {.lex_state = 34}, - [624] = {.lex_state = 34}, - [625] = {.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 = 34}, - [632] = {.lex_state = 34}, - [633] = {.lex_state = 33}, - [634] = {.lex_state = 34}, - [635] = {.lex_state = 34}, - [636] = {.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}, + [618] = {.lex_state = 32}, + [619] = {.lex_state = 32}, + [620] = {.lex_state = 33}, + [621] = {.lex_state = 32}, + [622] = {.lex_state = 83}, + [623] = {.lex_state = 32}, + [624] = {.lex_state = 32}, + [625] = {.lex_state = 83}, + [626] = {.lex_state = 32}, + [627] = {.lex_state = 32}, + [628] = {.lex_state = 32}, + [629] = {.lex_state = 32}, + [630] = {.lex_state = 32}, + [631] = {.lex_state = 32}, + [632] = {.lex_state = 32}, + [633] = {.lex_state = 32}, + [634] = {.lex_state = 32}, + [635] = {.lex_state = 32}, + [636] = {.lex_state = 32}, + [637] = {.lex_state = 32}, + [638] = {.lex_state = 32}, + [639] = {.lex_state = 32}, + [640] = {.lex_state = 32}, + [641] = {.lex_state = 32}, + [642] = {.lex_state = 32}, + [643] = {.lex_state = 32}, + [644] = {.lex_state = 32}, [645] = {.lex_state = 33}, [646] = {.lex_state = 33}, [647] = {.lex_state = 33}, @@ -6026,19 +6033,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 34}, - [657] = {.lex_state = 34}, - [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 = 34}, - [665] = {.lex_state = 34}, + [653] = {.lex_state = 32}, + [654] = {.lex_state = 32}, + [655] = {.lex_state = 32}, + [656] = {.lex_state = 32}, + [657] = {.lex_state = 32}, + [658] = {.lex_state = 32}, + [659] = {.lex_state = 32}, + [660] = {.lex_state = 32}, + [661] = {.lex_state = 32}, + [662] = {.lex_state = 32}, + [663] = {.lex_state = 32}, + [664] = {.lex_state = 32}, + [665] = {.lex_state = 33}, [666] = {.lex_state = 33}, [667] = {.lex_state = 83}, [668] = {.lex_state = 33}, @@ -6047,7 +6054,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [671] = {.lex_state = 33}, [672] = {.lex_state = 33}, [673] = {.lex_state = 33}, - [674] = {.lex_state = 34}, + [674] = {.lex_state = 33}, [675] = {.lex_state = 33}, [676] = {.lex_state = 33}, [677] = {.lex_state = 33}, @@ -6056,149 +6063,149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [680] = {.lex_state = 33}, [681] = {.lex_state = 33}, [682] = {.lex_state = 33}, - [683] = {.lex_state = 34}, + [683] = {.lex_state = 33}, [684] = {.lex_state = 33}, - [685] = {.lex_state = 34}, + [685] = {.lex_state = 33}, [686] = {.lex_state = 33}, [687] = {.lex_state = 33}, - [688] = {.lex_state = 34}, - [689] = {.lex_state = 33}, + [688] = {.lex_state = 32}, + [689] = {.lex_state = 32}, [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 = 34}, - [701] = {.lex_state = 34}, - [702] = {.lex_state = 34}, - [703] = {.lex_state = 34}, - [704] = {.lex_state = 33}, - [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}, + [694] = {.lex_state = 32}, + [695] = {.lex_state = 32}, + [696] = {.lex_state = 33}, + [697] = {.lex_state = 32}, + [698] = {.lex_state = 32}, + [699] = {.lex_state = 32}, + [700] = {.lex_state = 32}, + [701] = {.lex_state = 32}, + [702] = {.lex_state = 32}, + [703] = {.lex_state = 32}, + [704] = {.lex_state = 32}, + [705] = {.lex_state = 32}, + [706] = {.lex_state = 32}, + [707] = {.lex_state = 32}, + [708] = {.lex_state = 32}, + [709] = {.lex_state = 32}, + [710] = {.lex_state = 32}, + [711] = {.lex_state = 32}, [712] = {.lex_state = 33}, - [713] = {.lex_state = 34}, - [714] = {.lex_state = 34}, - [715] = {.lex_state = 34}, - [716] = {.lex_state = 34}, - [717] = {.lex_state = 34}, - [718] = {.lex_state = 34}, - [719] = {.lex_state = 34}, - [720] = {.lex_state = 34}, - [721] = {.lex_state = 34}, - [722] = {.lex_state = 34}, - [723] = {.lex_state = 34}, - [724] = {.lex_state = 34}, - [725] = {.lex_state = 34}, - [726] = {.lex_state = 34}, - [727] = {.lex_state = 34}, - [728] = {.lex_state = 34}, - [729] = {.lex_state = 34}, - [730] = {.lex_state = 34}, - [731] = {.lex_state = 34}, - [732] = {.lex_state = 34}, - [733] = {.lex_state = 34}, - [734] = {.lex_state = 34}, - [735] = {.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}, - [743] = {.lex_state = 34}, - [744] = {.lex_state = 34}, - [745] = {.lex_state = 34}, - [746] = {.lex_state = 34}, + [713] = {.lex_state = 32}, + [714] = {.lex_state = 32}, + [715] = {.lex_state = 32}, + [716] = {.lex_state = 33}, + [717] = {.lex_state = 32}, + [718] = {.lex_state = 32}, + [719] = {.lex_state = 32}, + [720] = {.lex_state = 32}, + [721] = {.lex_state = 32}, + [722] = {.lex_state = 32}, + [723] = {.lex_state = 33}, + [724] = {.lex_state = 32}, + [725] = {.lex_state = 32}, + [726] = {.lex_state = 32}, + [727] = {.lex_state = 32}, + [728] = {.lex_state = 32}, + [729] = {.lex_state = 33}, + [730] = {.lex_state = 32}, + [731] = {.lex_state = 32}, + [732] = {.lex_state = 33}, + [733] = {.lex_state = 32}, + [734] = {.lex_state = 32}, + [735] = {.lex_state = 32}, + [736] = {.lex_state = 32}, + [737] = {.lex_state = 32}, + [738] = {.lex_state = 32}, + [739] = {.lex_state = 32}, + [740] = {.lex_state = 32}, + [741] = {.lex_state = 32}, + [742] = {.lex_state = 32}, + [743] = {.lex_state = 32}, + [744] = {.lex_state = 32}, + [745] = {.lex_state = 32}, + [746] = {.lex_state = 32}, [747] = {.lex_state = 32}, - [748] = {.lex_state = 34}, + [748] = {.lex_state = 32}, [749] = {.lex_state = 32}, - [750] = {.lex_state = 34}, + [750] = {.lex_state = 32}, [751] = {.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 = 34}, + [753] = {.lex_state = 32}, + [754] = {.lex_state = 32}, + [755] = {.lex_state = 32}, + [756] = {.lex_state = 32}, + [757] = {.lex_state = 32}, [758] = {.lex_state = 32}, - [759] = {.lex_state = 34}, - [760] = {.lex_state = 34}, - [761] = {.lex_state = 34}, - [762] = {.lex_state = 34}, - [763] = {.lex_state = 34}, - [764] = {.lex_state = 34}, - [765] = {.lex_state = 34}, + [759] = {.lex_state = 32}, + [760] = {.lex_state = 32}, + [761] = {.lex_state = 32}, + [762] = {.lex_state = 32}, + [763] = {.lex_state = 32}, + [764] = {.lex_state = 31}, + [765] = {.lex_state = 32}, [766] = {.lex_state = 32}, - [767] = {.lex_state = 34}, - [768] = {.lex_state = 34}, + [767] = {.lex_state = 32}, + [768] = {.lex_state = 32}, [769] = {.lex_state = 34}, [770] = {.lex_state = 34}, - [771] = {.lex_state = 33}, - [772] = {.lex_state = 34}, - [773] = {.lex_state = 34}, - [774] = {.lex_state = 34}, - [775] = {.lex_state = 34}, - [776] = {.lex_state = 33}, - [777] = {.lex_state = 34}, - [778] = {.lex_state = 34}, - [779] = {.lex_state = 34}, - [780] = {.lex_state = 34}, + [771] = {.lex_state = 32}, + [772] = {.lex_state = 32}, + [773] = {.lex_state = 32}, + [774] = {.lex_state = 33}, + [775] = {.lex_state = 33}, + [776] = {.lex_state = 32}, + [777] = {.lex_state = 32}, + [778] = {.lex_state = 32}, + [779] = {.lex_state = 32}, + [780] = {.lex_state = 32}, [781] = {.lex_state = 34}, - [782] = {.lex_state = 32}, - [783] = {.lex_state = 34}, - [784] = {.lex_state = 32}, - [785] = {.lex_state = 34}, - [786] = {.lex_state = 31}, + [782] = {.lex_state = 34}, + [783] = {.lex_state = 32}, + [784] = {.lex_state = 34}, + [785] = {.lex_state = 32}, + [786] = {.lex_state = 34}, [787] = {.lex_state = 34}, [788] = {.lex_state = 32}, - [789] = {.lex_state = 34}, - [790] = {.lex_state = 34}, - [791] = {.lex_state = 34}, + [789] = {.lex_state = 32}, + [790] = {.lex_state = 32}, + [791] = {.lex_state = 32}, [792] = {.lex_state = 34}, - [793] = {.lex_state = 34}, + [793] = {.lex_state = 32}, [794] = {.lex_state = 32}, - [795] = {.lex_state = 34}, + [795] = {.lex_state = 32}, [796] = {.lex_state = 34}, [797] = {.lex_state = 32}, [798] = {.lex_state = 34}, [799] = {.lex_state = 32}, - [800] = {.lex_state = 34}, - [801] = {.lex_state = 32}, + [800] = {.lex_state = 32}, + [801] = {.lex_state = 31}, [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 = 31}, - [809] = {.lex_state = 34}, - [810] = {.lex_state = 34}, + [803] = {.lex_state = 32}, + [804] = {.lex_state = 32}, + [805] = {.lex_state = 32}, + [806] = {.lex_state = 32}, + [807] = {.lex_state = 32}, + [808] = {.lex_state = 32}, + [809] = {.lex_state = 32}, + [810] = {.lex_state = 32}, [811] = {.lex_state = 34}, - [812] = {.lex_state = 34}, - [813] = {.lex_state = 34}, + [812] = {.lex_state = 32}, + [813] = {.lex_state = 32}, [814] = {.lex_state = 32}, [815] = {.lex_state = 34}, - [816] = {.lex_state = 34}, - [817] = {.lex_state = 32}, + [816] = {.lex_state = 32}, + [817] = {.lex_state = 34}, [818] = {.lex_state = 34}, [819] = {.lex_state = 34}, - [820] = {.lex_state = 34}, - [821] = {.lex_state = 34}, + [820] = {.lex_state = 32}, + [821] = {.lex_state = 32}, [822] = {.lex_state = 32}, - [823] = {.lex_state = 34}, - [824] = {.lex_state = 34}, - [825] = {.lex_state = 31}, + [823] = {.lex_state = 32}, + [824] = {.lex_state = 32}, + [825] = {.lex_state = 32}, [826] = {.lex_state = 34}, [827] = {.lex_state = 32}, [828] = {.lex_state = 34}, @@ -6206,8 +6213,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [830] = {.lex_state = 31}, [831] = {.lex_state = 32}, [832] = {.lex_state = 32}, - [833] = {.lex_state = 32}, - [834] = {.lex_state = 34}, + [833] = {.lex_state = 31}, + [834] = {.lex_state = 32}, [835] = {.lex_state = 34}, [836] = {.lex_state = 33}, [837] = {.lex_state = 33}, @@ -6248,7 +6255,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [872] = {.lex_state = 33}, [873] = {.lex_state = 33}, [874] = {.lex_state = 33}, - [875] = {.lex_state = 33}, + [875] = {.lex_state = 17}, [876] = {.lex_state = 33}, [877] = {.lex_state = 33}, [878] = {.lex_state = 33}, @@ -6261,41 +6268,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [885] = {.lex_state = 33}, [886] = {.lex_state = 33}, [887] = {.lex_state = 33}, - [888] = {.lex_state = 30}, - [889] = {.lex_state = 19}, + [888] = {.lex_state = 33}, + [889] = {.lex_state = 30}, [890] = {.lex_state = 33}, [891] = {.lex_state = 33}, - [892] = {.lex_state = 30}, + [892] = {.lex_state = 33}, [893] = {.lex_state = 33}, - [894] = {.lex_state = 33}, + [894] = {.lex_state = 30}, [895] = {.lex_state = 33}, [896] = {.lex_state = 33}, - [897] = {.lex_state = 30}, - [898] = {.lex_state = 33}, + [897] = {.lex_state = 33}, + [898] = {.lex_state = 30}, [899] = {.lex_state = 30}, [900] = {.lex_state = 30}, - [901] = {.lex_state = 33}, + [901] = {.lex_state = 30}, [902] = {.lex_state = 30}, [903] = {.lex_state = 30}, [904] = {.lex_state = 30}, [905] = {.lex_state = 30}, - [906] = {.lex_state = 30}, + [906] = {.lex_state = 33}, [907] = {.lex_state = 30}, [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 = 30}, - [915] = {.lex_state = 30}, + [913] = {.lex_state = 33}, + [914] = {.lex_state = 33}, + [915] = {.lex_state = 33}, [916] = {.lex_state = 33}, - [917] = {.lex_state = 33}, - [918] = {.lex_state = 30}, - [919] = {.lex_state = 33}, - [920] = {.lex_state = 33}, + [917] = {.lex_state = 30}, + [918] = {.lex_state = 33}, + [919] = {.lex_state = 30}, + [920] = {.lex_state = 30}, [921] = {.lex_state = 30}, - [922] = {.lex_state = 33}, + [922] = {.lex_state = 30}, [923] = {.lex_state = 30}, [924] = {.lex_state = 30}, [925] = {.lex_state = 30}, @@ -6304,58 +6311,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [928] = {.lex_state = 30}, [929] = {.lex_state = 30}, [930] = {.lex_state = 30}, - [931] = {.lex_state = 33}, - [932] = {.lex_state = 30}, - [933] = {.lex_state = 30}, + [931] = {.lex_state = 30}, + [932] = {.lex_state = 33}, + [933] = {.lex_state = 33}, [934] = {.lex_state = 30}, [935] = {.lex_state = 33}, [936] = {.lex_state = 30}, - [937] = {.lex_state = 33}, - [938] = {.lex_state = 30}, + [937] = {.lex_state = 30}, + [938] = {.lex_state = 33}, [939] = {.lex_state = 33}, - [940] = {.lex_state = 33}, - [941] = {.lex_state = 33}, + [940] = {.lex_state = 30}, + [941] = {.lex_state = 30}, [942] = {.lex_state = 33}, - [943] = {.lex_state = 30}, - [944] = {.lex_state = 30}, + [943] = {.lex_state = 33}, + [944] = {.lex_state = 33}, [945] = {.lex_state = 33}, [946] = {.lex_state = 33}, [947] = {.lex_state = 33}, [948] = {.lex_state = 33}, [949] = {.lex_state = 33}, - [950] = {.lex_state = 33}, + [950] = {.lex_state = 30}, [951] = {.lex_state = 33}, - [952] = {.lex_state = 19}, - [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 = 19}, - [963] = {.lex_state = 19}, - [964] = {.lex_state = 19}, - [965] = {.lex_state = 19}, - [966] = {.lex_state = 33}, - [967] = {.lex_state = 19}, - [968] = {.lex_state = 19}, - [969] = {.lex_state = 19}, - [970] = {.lex_state = 19}, - [971] = {.lex_state = 19}, - [972] = {.lex_state = 19}, - [973] = {.lex_state = 19}, - [974] = {.lex_state = 19}, - [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 = 19}, - [982] = {.lex_state = 19}, + [952] = {.lex_state = 17}, + [953] = {.lex_state = 17}, + [954] = {.lex_state = 17}, + [955] = {.lex_state = 17}, + [956] = {.lex_state = 33}, + [957] = {.lex_state = 17}, + [958] = {.lex_state = 17}, + [959] = {.lex_state = 17}, + [960] = {.lex_state = 17}, + [961] = {.lex_state = 17}, + [962] = {.lex_state = 17}, + [963] = {.lex_state = 17}, + [964] = {.lex_state = 33}, + [965] = {.lex_state = 17}, + [966] = {.lex_state = 17}, + [967] = {.lex_state = 17}, + [968] = {.lex_state = 17}, + [969] = {.lex_state = 17}, + [970] = {.lex_state = 17}, + [971] = {.lex_state = 17}, + [972] = {.lex_state = 17}, + [973] = {.lex_state = 17}, + [974] = {.lex_state = 17}, + [975] = {.lex_state = 17}, + [976] = {.lex_state = 17}, + [977] = {.lex_state = 17}, + [978] = {.lex_state = 17}, + [979] = {.lex_state = 17}, + [980] = {.lex_state = 17}, + [981] = {.lex_state = 17}, + [982] = {.lex_state = 33}, [983] = {.lex_state = 33}, [984] = {.lex_state = 33}, [985] = {.lex_state = 33}, @@ -6378,77 +6385,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1002] = {.lex_state = 33}, [1003] = {.lex_state = 33}, [1004] = {.lex_state = 33}, - [1005] = {.lex_state = 83}, + [1005] = {.lex_state = 33}, [1006] = {.lex_state = 83}, - [1007] = {.lex_state = 33}, - [1008] = {.lex_state = 83}, + [1007] = {.lex_state = 83}, + [1008] = {.lex_state = 33}, [1009] = {.lex_state = 33}, [1010] = {.lex_state = 33}, [1011] = {.lex_state = 33}, [1012] = {.lex_state = 33}, [1013] = {.lex_state = 33}, - [1014] = {.lex_state = 33}, - [1015] = {.lex_state = 83}, - [1016] = {.lex_state = 33}, + [1014] = {.lex_state = 83}, + [1015] = {.lex_state = 33}, + [1016] = {.lex_state = 83}, [1017] = {.lex_state = 33}, [1018] = {.lex_state = 83}, - [1019] = {.lex_state = 83}, + [1019] = {.lex_state = 33}, [1020] = {.lex_state = 33}, - [1021] = {.lex_state = 33}, - [1022] = {.lex_state = 83}, + [1021] = {.lex_state = 83}, + [1022] = {.lex_state = 33}, [1023] = {.lex_state = 33}, [1024] = {.lex_state = 33}, [1025] = {.lex_state = 33}, - [1026] = {.lex_state = 33}, - [1027] = {.lex_state = 83}, + [1026] = {.lex_state = 83}, + [1027] = {.lex_state = 33}, [1028] = {.lex_state = 33}, [1029] = {.lex_state = 33}, [1030] = {.lex_state = 33}, - [1031] = {.lex_state = 33}, + [1031] = {.lex_state = 83}, [1032] = {.lex_state = 33}, [1033] = {.lex_state = 33}, - [1034] = {.lex_state = 33}, - [1035] = {.lex_state = 33}, + [1034] = {.lex_state = 83}, + [1035] = {.lex_state = 83}, [1036] = {.lex_state = 33}, [1037] = {.lex_state = 83}, - [1038] = {.lex_state = 83}, + [1038] = {.lex_state = 33}, [1039] = {.lex_state = 33}, [1040] = {.lex_state = 33}, [1041] = {.lex_state = 33}, - [1042] = {.lex_state = 33}, - [1043] = {.lex_state = 83}, + [1042] = {.lex_state = 83}, + [1043] = {.lex_state = 33}, [1044] = {.lex_state = 33}, - [1045] = {.lex_state = 83}, - [1046] = {.lex_state = 33}, - [1047] = {.lex_state = 83}, + [1045] = {.lex_state = 33}, + [1046] = {.lex_state = 83}, + [1047] = {.lex_state = 33}, [1048] = {.lex_state = 83}, - [1049] = {.lex_state = 33}, - [1050] = {.lex_state = 33}, + [1049] = {.lex_state = 83}, + [1050] = {.lex_state = 83}, [1051] = {.lex_state = 83}, [1052] = {.lex_state = 83}, [1053] = {.lex_state = 83}, [1054] = {.lex_state = 83}, - [1055] = {.lex_state = 83}, - [1056] = {.lex_state = 83}, + [1055] = {.lex_state = 33}, + [1056] = {.lex_state = 33}, [1057] = {.lex_state = 83}, [1058] = {.lex_state = 83}, [1059] = {.lex_state = 83}, - [1060] = {.lex_state = 83}, - [1061] = {.lex_state = 35}, + [1060] = {.lex_state = 35}, + [1061] = {.lex_state = 83}, [1062] = {.lex_state = 83}, [1063] = {.lex_state = 83}, - [1064] = {.lex_state = 83}, + [1064] = {.lex_state = 35}, [1065] = {.lex_state = 83}, [1066] = {.lex_state = 83}, - [1067] = {.lex_state = 35}, + [1067] = {.lex_state = 83}, [1068] = {.lex_state = 35}, - [1069] = {.lex_state = 35}, + [1069] = {.lex_state = 83}, [1070] = {.lex_state = 83}, [1071] = {.lex_state = 83}, [1072] = {.lex_state = 83}, [1073] = {.lex_state = 83}, [1074] = {.lex_state = 83}, - [1075] = {.lex_state = 83}, + [1075] = {.lex_state = 35}, [1076] = {.lex_state = 83}, [1077] = {.lex_state = 83}, [1078] = {.lex_state = 83}, @@ -6487,237 +6494,237 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1111] = {.lex_state = 83}, [1112] = {.lex_state = 83}, [1113] = {.lex_state = 83}, - [1114] = {.lex_state = 28}, + [1114] = {.lex_state = 33}, [1115] = {.lex_state = 83}, [1116] = {.lex_state = 33}, - [1117] = {.lex_state = 33}, + [1117] = {.lex_state = 28}, [1118] = {.lex_state = 83}, [1119] = {.lex_state = 83}, - [1120] = {.lex_state = 83}, - [1121] = {.lex_state = 83}, + [1120] = {.lex_state = 22}, + [1121] = {.lex_state = 22}, [1122] = {.lex_state = 83}, [1123] = {.lex_state = 83}, [1124] = {.lex_state = 22}, [1125] = {.lex_state = 83}, - [1126] = {.lex_state = 83}, - [1127] = {.lex_state = 33}, - [1128] = {.lex_state = 28}, - [1129] = {.lex_state = 24}, + [1126] = {.lex_state = 22}, + [1127] = {.lex_state = 24}, + [1128] = {.lex_state = 83}, + [1129] = {.lex_state = 83}, [1130] = {.lex_state = 24}, - [1131] = {.lex_state = 83}, - [1132] = {.lex_state = 83}, + [1131] = {.lex_state = 28}, + [1132] = {.lex_state = 24}, [1133] = {.lex_state = 83}, - [1134] = {.lex_state = 24}, + [1134] = {.lex_state = 83}, [1135] = {.lex_state = 83}, [1136] = {.lex_state = 83}, - [1137] = {.lex_state = 22}, - [1138] = {.lex_state = 83}, - [1139] = {.lex_state = 22}, + [1137] = {.lex_state = 83}, + [1138] = {.lex_state = 22}, + [1139] = {.lex_state = 83}, [1140] = {.lex_state = 83}, - [1141] = {.lex_state = 22}, - [1142] = {.lex_state = 83}, - [1143] = {.lex_state = 22}, - [1144] = {.lex_state = 24}, + [1141] = {.lex_state = 83}, + [1142] = {.lex_state = 22}, + [1143] = {.lex_state = 83}, + [1144] = {.lex_state = 33}, [1145] = {.lex_state = 22}, [1146] = {.lex_state = 24}, [1147] = {.lex_state = 24}, [1148] = {.lex_state = 83}, - [1149] = {.lex_state = 22}, - [1150] = {.lex_state = 24}, + [1149] = {.lex_state = 83}, + [1150] = {.lex_state = 83}, [1151] = {.lex_state = 83}, - [1152] = {.lex_state = 83}, - [1153] = {.lex_state = 83}, + [1152] = {.lex_state = 24}, + [1153] = {.lex_state = 24}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 33}, + [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 28}, - [1161] = {.lex_state = 19}, - [1162] = {.lex_state = 19}, - [1163] = {.lex_state = 0}, + [1159] = {.lex_state = 28}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 0}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 28}, [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 28}, + [1165] = {.lex_state = 17}, + [1166] = {.lex_state = 0}, [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 33}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 0}, + [1169] = {.lex_state = 0}, + [1170] = {.lex_state = 33}, + [1171] = {.lex_state = 83}, + [1172] = {.lex_state = 17}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0}, + [1174] = {.lex_state = 28}, [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, + [1176] = {.lex_state = 28}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 28}, + [1179] = {.lex_state = 0}, [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 28}, + [1182] = {.lex_state = 33}, [1183] = {.lex_state = 0}, [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, + [1185] = {.lex_state = 17}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 0}, + [1187] = {.lex_state = 83}, [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 83}, - [1190] = {.lex_state = 19}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 33}, - [1193] = {.lex_state = 19}, - [1194] = {.lex_state = 0}, + [1189] = {.lex_state = 0}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 17}, + [1192] = {.lex_state = 28}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 33}, [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 28}, + [1196] = {.lex_state = 28}, + [1197] = {.lex_state = 0}, [1198] = {.lex_state = 33}, - [1199] = {.lex_state = 28}, - [1200] = {.lex_state = 33}, - [1201] = {.lex_state = 28}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 33}, - [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 83}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 33}, + [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 0}, + [1208] = {.lex_state = 33}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0}, + [1212] = {.lex_state = 28}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 25}, - [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 33}, + [1214] = {.lex_state = 23}, + [1215] = {.lex_state = 23}, + [1216] = {.lex_state = 0}, [1217] = {.lex_state = 83}, - [1218] = {.lex_state = 25}, - [1219] = {.lex_state = 83}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 25}, - [1222] = {.lex_state = 83}, - [1223] = {.lex_state = 83}, + [1218] = {.lex_state = 33}, + [1219] = {.lex_state = 28}, + [1220] = {.lex_state = 33}, + [1221] = {.lex_state = 0}, + [1222] = {.lex_state = 23}, + [1223] = {.lex_state = 23}, [1224] = {.lex_state = 83}, - [1225] = {.lex_state = 0}, + [1225] = {.lex_state = 83}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 28}, - [1228] = {.lex_state = 25}, - [1229] = {.lex_state = 25}, - [1230] = {.lex_state = 33}, - [1231] = {.lex_state = 83}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 23}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 23}, + [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 25}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 25}, + [1233] = {.lex_state = 83}, + [1234] = {.lex_state = 23}, + [1235] = {.lex_state = 0}, [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 83}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 25}, - [1241] = {.lex_state = 25}, - [1242] = {.lex_state = 26}, - [1243] = {.lex_state = 25}, + [1239] = {.lex_state = 33}, + [1240] = {.lex_state = 23}, + [1241] = {.lex_state = 83}, + [1242] = {.lex_state = 83}, + [1243] = {.lex_state = 26}, [1244] = {.lex_state = 33}, - [1245] = {.lex_state = 25}, + [1245] = {.lex_state = 28}, [1246] = {.lex_state = 83}, [1247] = {.lex_state = 83}, [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}, + [1251] = {.lex_state = 26}, + [1252] = {.lex_state = 33}, + [1253] = {.lex_state = 23}, + [1254] = {.lex_state = 23}, + [1255] = {.lex_state = 0}, [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 = 25}, - [1266] = {.lex_state = 25}, - [1267] = {.lex_state = 83}, - [1268] = {.lex_state = 25}, - [1269] = {.lex_state = 0}, + [1257] = {.lex_state = 83}, + [1258] = {.lex_state = 23}, + [1259] = {.lex_state = 83}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 23}, + [1262] = {.lex_state = 83}, + [1263] = {.lex_state = 23}, + [1264] = {.lex_state = 23}, + [1265] = {.lex_state = 33}, + [1266] = {.lex_state = 23}, + [1267] = {.lex_state = 23}, + [1268] = {.lex_state = 26}, + [1269] = {.lex_state = 23}, [1270] = {.lex_state = 83}, - [1271] = {.lex_state = 33}, - [1272] = {.lex_state = 33}, - [1273] = {.lex_state = 83}, + [1271] = {.lex_state = 83}, + [1272] = {.lex_state = 83}, + [1273] = {.lex_state = 33}, [1274] = {.lex_state = 83}, - [1275] = {.lex_state = 19}, - [1276] = {.lex_state = 0}, + [1275] = {.lex_state = 33}, + [1276] = {.lex_state = 17}, [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 27}, - [1279] = {.lex_state = 0}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 27}, [1280] = {.lex_state = 0}, [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 19}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 33}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 33}, + [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, + [1287] = {.lex_state = 17}, [1288] = {.lex_state = 0}, [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 19}, - [1291] = {.lex_state = 19}, - [1292] = {.lex_state = 19}, - [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 = 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 = 19}, - [1308] = {.lex_state = 33}, + [1290] = {.lex_state = 27}, + [1291] = {.lex_state = 17}, + [1292] = {.lex_state = 17}, + [1293] = {.lex_state = 17}, + [1294] = {.lex_state = 27}, + [1295] = {.lex_state = 17}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 27}, + [1298] = {.lex_state = 17}, + [1299] = {.lex_state = 17}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 17}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 17}, + [1305] = {.lex_state = 17}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 17}, + [1308] = {.lex_state = 83}, [1309] = {.lex_state = 33}, - [1310] = {.lex_state = 19}, - [1311] = {.lex_state = 27}, - [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 0}, + [1310] = {.lex_state = 33}, + [1311] = {.lex_state = 17}, + [1312] = {.lex_state = 27}, + [1313] = {.lex_state = 17}, [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 33}, - [1316] = {.lex_state = 27}, - [1317] = {.lex_state = 0}, + [1315] = {.lex_state = 0}, + [1316] = {.lex_state = 33}, + [1317] = {.lex_state = 27}, [1318] = {.lex_state = 0}, [1319] = {.lex_state = 27}, [1320] = {.lex_state = 0}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 27}, + [1323] = {.lex_state = 0}, [1324] = {.lex_state = 27}, [1325] = {.lex_state = 27}, [1326] = {.lex_state = 27}, - [1327] = {.lex_state = 0}, + [1327] = {.lex_state = 27}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 27}, - [1330] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 27}, [1331] = {.lex_state = 0}, [1332] = {.lex_state = 0}, [1333] = {.lex_state = 27}, [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 27}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 27}, + [1335] = {.lex_state = 27}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 27}, + [1338] = {.lex_state = 0}, [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 33}, - [1341] = {.lex_state = 27}, + [1340] = {.lex_state = 0}, + [1341] = {.lex_state = 33}, [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 33}, - [1344] = {.lex_state = 0}, + [1343] = {.lex_state = 27}, + [1344] = {.lex_state = 33}, [1345] = {.lex_state = 27}, [1346] = {.lex_state = 27}, [1347] = {.lex_state = 0}, @@ -6726,111 +6733,112 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1350] = {.lex_state = 0}, [1351] = {.lex_state = 27}, [1352] = {.lex_state = 27}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 19}, - [1355] = {.lex_state = 27}, + [1353] = {.lex_state = 27}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 17}, [1356] = {.lex_state = 27}, - [1357] = {.lex_state = 19}, - [1358] = {.lex_state = 27}, - [1359] = {.lex_state = 33}, - [1360] = {.lex_state = 0}, + [1357] = {.lex_state = 17}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 27}, + [1360] = {.lex_state = 33}, [1361] = {.lex_state = 0}, [1362] = {.lex_state = 0}, [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 33}, - [1368] = {.lex_state = 19}, - [1369] = {.lex_state = 33}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 33}, + [1369] = {.lex_state = 17}, [1370] = {.lex_state = 33}, - [1371] = {.lex_state = 19}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 83}, - [1374] = {.lex_state = 0}, + [1371] = {.lex_state = 33}, + [1372] = {.lex_state = 17}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 83}, [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 33}, - [1377] = {.lex_state = 19}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 19}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 33}, + [1378] = {.lex_state = 17}, + [1379] = {.lex_state = 17}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 33}, - [1382] = {.lex_state = 0}, + [1381] = {.lex_state = 0}, + [1382] = {.lex_state = 33}, [1383] = {.lex_state = 0}, [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 33}, - [1386] = {.lex_state = 0}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 33}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 19}, + [1389] = {.lex_state = 0}, [1390] = {.lex_state = 83}, - [1391] = {.lex_state = 27}, - [1392] = {.lex_state = 33}, - [1393] = {.lex_state = 19}, - [1394] = {.lex_state = 19}, - [1395] = {.lex_state = 33}, + [1391] = {.lex_state = 17}, + [1392] = {.lex_state = 27}, + [1393] = {.lex_state = 33}, + [1394] = {.lex_state = 17}, + [1395] = {.lex_state = 17}, [1396] = {.lex_state = 33}, - [1397] = {.lex_state = 0}, + [1397] = {.lex_state = 33}, [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 33}, + [1399] = {.lex_state = 0}, [1400] = {.lex_state = 33}, - [1401] = {.lex_state = 0}, + [1401] = {.lex_state = 33}, [1402] = {.lex_state = 0}, [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 19}, - [1405] = {.lex_state = 0}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 17}, [1406] = {.lex_state = 0}, [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 33}, - [1410] = {.lex_state = 27}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 33}, [1411] = {.lex_state = 27}, - [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 33}, + [1412] = {.lex_state = 27}, + [1413] = {.lex_state = 0}, [1414] = {.lex_state = 33}, [1415] = {.lex_state = 33}, - [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 33}, - [1418] = {.lex_state = 0}, + [1416] = {.lex_state = 33}, + [1417] = {.lex_state = 0}, + [1418] = {.lex_state = 33}, [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 19}, - [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 27}, - [1426] = {.lex_state = 33}, - [1427] = {.lex_state = 0}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 17}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 27}, + [1427] = {.lex_state = 33}, [1428] = {.lex_state = 27}, - [1429] = {.lex_state = 19}, - [1430] = {.lex_state = 0}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 17}, [1431] = {.lex_state = 0}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 19}, - [1434] = {.lex_state = 27}, - [1435] = {.lex_state = 33}, - [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 33}, - [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 83}, - [1440] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 17}, + [1435] = {.lex_state = 27}, + [1436] = {.lex_state = 33}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 33}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 83}, [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 83}, - [1443] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 83}, [1444] = {.lex_state = 0}, [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 33}, - [1447] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 33}, [1448] = {.lex_state = 0}, [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 83}, - [1451] = {.lex_state = 27}, - [1452] = {.lex_state = 83}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 83}, + [1452] = {.lex_state = 27}, [1453] = {.lex_state = 83}, - [1454] = {.lex_state = 27}, - [1455] = {.lex_state = 83}, - [1456] = {.lex_state = 33}, - [1457] = {.lex_state = 83}, + [1454] = {.lex_state = 83}, + [1455] = {.lex_state = 27}, + [1456] = {.lex_state = 83}, + [1457] = {.lex_state = 33}, + [1458] = {.lex_state = 83}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6958,7 +6966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1432), + [sym_translation_unit] = STATE(1433), [sym_preproc_include] = STATE(40), [sym_preproc_def] = STATE(40), [sym_preproc_function_def] = STATE(40), @@ -6969,7 +6977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(40), [sym_type_definition] = STATE(40), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1014), + [sym__declaration_specifiers] = STATE(1015), [sym_linkage_specification] = STATE(40), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -6979,10 +6987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(40), [sym_labeled_statement] = STATE(40), [sym_expression_statement] = STATE(40), @@ -6996,30 +7004,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -7107,20 +7115,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(7), [sym_type_definition] = STATE(7), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1016), + [sym__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(7), [sym_labeled_statement] = STATE(7), [sym_expression_statement] = STATE(7), @@ -7134,30 +7142,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(7), [sym_continue_statement] = STATE(7), [sym_goto_statement] = STATE(7), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7235,69 +7243,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1296), - [sym_preproc_elif] = STATE(1296), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), + [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(1294), + [sym_preproc_elif] = STATE(1294), + [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(20), + [sym__declaration_specifiers] = STATE(1013), + [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(20), + [sym_ms_call_modifier] = STATE(647), + [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(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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [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(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(881), + [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7375,69 +7383,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(9), - [sym_preproc_def] = STATE(9), - [sym_preproc_function_def] = STATE(9), - [sym_preproc_call] = STATE(9), - [sym_preproc_if] = STATE(9), - [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1293), - [sym_preproc_elif] = STATE(1293), - [sym_function_definition] = STATE(9), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), + [sym_preproc_include] = STATE(8), + [sym_preproc_def] = STATE(8), + [sym_preproc_function_def] = STATE(8), + [sym_preproc_call] = STATE(8), + [sym_preproc_if] = STATE(8), + [sym_preproc_ifdef] = STATE(8), + [sym_preproc_else] = STATE(1392), + [sym_preproc_elif] = STATE(1392), + [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(9), + [sym__declaration_specifiers] = STATE(1013), + [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(9), + [sym_ms_call_modifier] = STATE(647), + [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(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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [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(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(881), + [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7515,69 +7523,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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(1297), + [sym_preproc_elif] = STATE(1297), + [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(8), + [sym__declaration_specifiers] = STATE(1013), + [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(8), + [sym_ms_call_modifier] = STATE(647), + [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(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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [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(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(881), + [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7655,69 +7663,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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(1317), + [sym_preproc_elif] = STATE(1317), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1016), - [sym_linkage_specification] = STATE(3), + [sym__declaration_specifiers] = STATE(1013), + [sym_linkage_specification] = STATE(5), [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_ms_call_modifier] = STATE(647), + [sym_compound_statement] = STATE(5), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [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(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_translation_unit_repeat1] = STATE(5), [aux_sym__declaration_specifiers_repeat1] = STATE(650), [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7801,26 +7809,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(1341), - [sym_preproc_elif] = STATE(1341), + [sym_preproc_else] = STATE(1343), + [sym_preproc_elif] = STATE(1343), [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__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -7834,30 +7842,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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7941,26 +7949,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(1351), - [sym_preproc_elif] = STATE(1351), + [sym_preproc_else] = STATE(1352), + [sym_preproc_elif] = STATE(1352), [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__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -7974,30 +7982,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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8081,26 +8089,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(1312), + [sym_preproc_elif] = STATE(1312), [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__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8114,30 +8122,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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8221,26 +8229,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(1329), - [sym_preproc_elif] = STATE(1329), + [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(650), - [sym__declaration_specifiers] = STATE(1016), + [sym__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8254,30 +8262,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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8367,20 +8375,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(13), [sym_type_definition] = STATE(13), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1016), + [sym__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(13), [sym_labeled_statement] = STATE(13), [sym_expression_statement] = STATE(13), @@ -8394,30 +8402,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(13), [sym_continue_statement] = STATE(13), [sym_goto_statement] = STATE(13), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8501,26 +8509,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(14), [sym_preproc_if] = STATE(14), [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1356), - [sym_preproc_elif] = STATE(1356), + [sym_preproc_else] = STATE(1351), + [sym_preproc_elif] = STATE(1351), [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__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(14), [sym_labeled_statement] = STATE(14), [sym_expression_statement] = STATE(14), @@ -8534,30 +8542,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(14), [sym_continue_statement] = STATE(14), [sym_goto_statement] = STATE(14), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8641,26 +8649,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(1338), - [sym_preproc_elif] = STATE(1338), + [sym_preproc_else] = STATE(1337), + [sym_preproc_elif] = STATE(1337), [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__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8674,30 +8682,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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8787,20 +8795,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1016), + [sym__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8814,30 +8822,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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8921,26 +8929,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(1454), - [sym_preproc_elif] = STATE(1454), + [sym_preproc_else] = STATE(1455), + [sym_preproc_elif] = STATE(1455), [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__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8954,30 +8962,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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9061,26 +9069,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_preproc_else] = STATE(1353), + [sym_preproc_elif] = STATE(1353), [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__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(19), [sym_labeled_statement] = STATE(19), [sym_expression_statement] = STATE(19), @@ -9094,30 +9102,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(19), [sym_continue_statement] = STATE(19), [sym_goto_statement] = STATE(19), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9201,26 +9209,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_preproc_else] = STATE(1435), + [sym_preproc_elif] = STATE(1435), [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__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(10), [sym_labeled_statement] = STATE(10), [sym_expression_statement] = STATE(10), @@ -9234,30 +9242,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(10), [sym_continue_statement] = STATE(10), [sym_goto_statement] = STATE(10), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9341,26 +9349,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_preproc_else] = STATE(1412), + [sym_preproc_elif] = STATE(1412), [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__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(15), [sym_labeled_statement] = STATE(15), [sym_expression_statement] = STATE(15), @@ -9374,30 +9382,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(15), [sym_continue_statement] = STATE(15), [sym_goto_statement] = STATE(15), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9487,20 +9495,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1016), + [sym__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -9514,30 +9522,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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9625,20 +9633,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1016), + [sym__declaration_specifiers] = STATE(1013), [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_ms_call_modifier] = STATE(647), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -9652,30 +9660,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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(176), [aux_sym_preproc_def_token1] = ACTIONS(179), @@ -9763,7 +9771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(28), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -9773,10 +9781,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -9790,30 +9798,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -9899,7 +9907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -9909,10 +9917,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -9926,30 +9934,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -10035,7 +10043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -10045,10 +10053,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -10062,30 +10070,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -10161,67 +10169,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [24] = { - [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_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(32), [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_compound_statement] = STATE(32), [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), - [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(722), - [sym_comma_expression] = STATE(1386), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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(874), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_translation_unit_repeat1] = STATE(32), [aux_sym__declaration_specifiers_repeat1] = STATE(650), [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -10307,7 +10315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(30), [sym_type_definition] = STATE(30), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(30), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -10317,10 +10325,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(30), [sym_labeled_statement] = STATE(30), [sym_expression_statement] = STATE(30), @@ -10334,30 +10342,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -10443,7 +10451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1009), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(39), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -10453,10 +10461,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -10470,30 +10478,30 @@ 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(707), - [sym_comma_expression] = STATE(1279), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [aux_sym_translation_unit_repeat1] = STATE(39), [aux_sym__declaration_specifiers_repeat1] = STATE(650), [aux_sym_attributed_declarator_repeat1] = STATE(246), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(353), [aux_sym_preproc_include_token1] = ACTIONS(355), [aux_sym_preproc_def_token1] = ACTIONS(357), @@ -10579,7 +10587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(33), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -10589,10 +10597,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(33), [sym_labeled_statement] = STATE(33), [sym_expression_statement] = STATE(33), @@ -10606,30 +10614,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -10715,7 +10723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -10725,10 +10733,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -10742,30 +10750,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -10841,67 +10849,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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(37), + [sym__declaration_specifiers] = STATE(1010), + [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(37), + [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(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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [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(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(881), + [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -10987,7 +10995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -10997,10 +11005,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -11014,30 +11022,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -11113,67 +11121,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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(36), + [sym__declaration_specifiers] = STATE(1010), + [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(36), + [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(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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [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(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(881), + [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -11249,67 +11257,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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(23), + [sym__declaration_specifiers] = STATE(1010), + [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(23), + [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(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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [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(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(881), + [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -11395,7 +11403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -11405,10 +11413,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -11422,30 +11430,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -11531,7 +11539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(35), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -11541,10 +11549,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym_expression_statement] = STATE(35), @@ -11558,30 +11566,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(35), [sym_continue_statement] = STATE(35), [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1386), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -11667,7 +11675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -11677,10 +11685,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -11694,30 +11702,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -11803,7 +11811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -11813,10 +11821,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -11830,30 +11838,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(415), [aux_sym_preproc_include_token1] = ACTIONS(418), [aux_sym_preproc_def_token1] = ACTIONS(421), @@ -11929,67 +11937,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [37] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), + [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(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_linkage_specification] = STATE(36), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(42), [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_compound_statement] = STATE(42), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [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(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_translation_unit_repeat1] = STATE(42), [aux_sym__declaration_specifiers_repeat1] = STATE(650), [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -12075,7 +12083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(38), [sym_type_definition] = STATE(38), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1009), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(38), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -12085,10 +12093,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(38), [sym_labeled_statement] = STATE(38), [sym_expression_statement] = STATE(38), @@ -12102,30 +12110,30 @@ 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(707), - [sym_comma_expression] = STATE(1279), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(482), [aux_sym_preproc_include_token1] = ACTIONS(485), [aux_sym_preproc_def_token1] = ACTIONS(488), @@ -12211,7 +12219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(38), [sym_type_definition] = STATE(38), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1009), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(38), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -12221,10 +12229,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(38), [sym_labeled_statement] = STATE(38), [sym_expression_statement] = STATE(38), @@ -12238,30 +12246,30 @@ 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(707), - [sym_comma_expression] = STATE(1279), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(353), [aux_sym_preproc_include_token1] = ACTIONS(355), [aux_sym_preproc_def_token1] = ACTIONS(357), @@ -12347,7 +12355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1014), + [sym__declaration_specifiers] = STATE(1015), [sym_linkage_specification] = STATE(41), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -12357,10 +12365,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -12374,30 +12382,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [ts_builtin_sym_end] = ACTIONS(547), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -12483,7 +12491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1014), + [sym__declaration_specifiers] = STATE(1015), [sym_linkage_specification] = STATE(41), [sym_attribute_specifier] = STATE(650), [sym_attribute_declaration] = STATE(389), @@ -12493,10 +12501,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -12510,30 +12518,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(874), + [sym_macro_type_specifier] = STATE(881), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [ts_builtin_sym_end] = ACTIONS(445), [sym_identifier] = ACTIONS(549), [aux_sym_preproc_include_token1] = ACTIONS(552), @@ -12609,67 +12617,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [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_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(22), + [sym__declaration_specifiers] = STATE(1010), + [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(22), + [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(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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [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(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(881), + [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), @@ -12748,18 +12756,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), + [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(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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), @@ -12772,28 +12780,28 @@ 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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(47), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(616), @@ -12876,18 +12884,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(45), [sym_type_definition] = STATE(45), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), + [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(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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(45), [sym_labeled_statement] = STATE(45), [sym_expression_statement] = STATE(45), @@ -12900,28 +12908,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(45), [sym_continue_statement] = STATE(45), [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(618), @@ -13004,18 +13012,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), + [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(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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), @@ -13028,28 +13036,28 @@ 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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(47), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(620), @@ -13132,18 +13140,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), + [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(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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym_expression_statement] = STATE(43), @@ -13156,28 +13164,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(43), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(622), @@ -13260,18 +13268,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), + [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(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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), @@ -13284,28 +13292,28 @@ 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(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(47), [sym_identifier] = ACTIONS(624), [aux_sym_preproc_include_token1] = ACTIONS(627), @@ -13388,18 +13396,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(56), [sym_type_definition] = STATE(56), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_specifiers] = STATE(1009), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -13412,28 +13420,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(334), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(335), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(56), [sym_identifier] = ACTIONS(725), [aux_sym_preproc_include_token1] = ACTIONS(620), @@ -13521,11 +13529,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(58), [sym_labeled_statement] = STATE(58), [sym_expression_statement] = STATE(58), @@ -13538,28 +13546,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(365), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(58), [sym_identifier] = ACTIONS(729), [aux_sym_preproc_include_token1] = ACTIONS(618), @@ -13640,18 +13648,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1011), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym_expression_statement] = STATE(50), @@ -13664,28 +13672,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(322), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(50), [ts_builtin_sym_end] = ACTIONS(731), [sym_identifier] = ACTIONS(733), @@ -13766,18 +13774,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1011), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym_expression_statement] = STATE(50), @@ -13790,28 +13798,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(322), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(50), [ts_builtin_sym_end] = ACTIONS(772), [sym_identifier] = ACTIONS(774), @@ -13892,18 +13900,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1011), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -13916,28 +13924,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(322), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(55), [ts_builtin_sym_end] = ACTIONS(776), [sym_identifier] = ACTIONS(774), @@ -14025,11 +14033,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(54), [sym_labeled_statement] = STATE(54), [sym_expression_statement] = STATE(54), @@ -14042,28 +14050,28 @@ 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(707), - [sym_comma_expression] = STATE(1279), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(365), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(729), [aux_sym_preproc_include_token1] = ACTIONS(616), @@ -14151,11 +14159,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(54), [sym_labeled_statement] = STATE(54), [sym_expression_statement] = STATE(54), @@ -14168,28 +14176,28 @@ 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(707), - [sym_comma_expression] = STATE(1279), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(365), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(778), [aux_sym_preproc_include_token1] = ACTIONS(627), @@ -14270,18 +14278,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1011), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym_expression_statement] = STATE(50), @@ -14294,28 +14302,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(322), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(50), [ts_builtin_sym_end] = ACTIONS(727), [sym_identifier] = ACTIONS(774), @@ -14396,18 +14404,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(56), [sym_type_definition] = STATE(56), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_specifiers] = STATE(1009), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -14420,28 +14428,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(334), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(335), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(56), [sym_identifier] = ACTIONS(817), [aux_sym_preproc_include_token1] = ACTIONS(627), @@ -14522,18 +14530,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(51), [sym_type_definition] = STATE(51), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1011), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(51), [sym_labeled_statement] = STATE(51), [sym_expression_statement] = STATE(51), @@ -14546,28 +14554,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(322), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(51), [ts_builtin_sym_end] = ACTIONS(856), [sym_identifier] = ACTIONS(774), @@ -14655,11 +14663,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(54), [sym_labeled_statement] = STATE(54), [sym_expression_statement] = STATE(54), @@ -14672,28 +14680,28 @@ 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(707), - [sym_comma_expression] = STATE(1279), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(365), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(729), [aux_sym_preproc_include_token1] = ACTIONS(620), @@ -14781,11 +14789,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -14798,28 +14806,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(53), [sym_continue_statement] = STATE(53), [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(707), - [sym_comma_expression] = STATE(1279), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(365), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(53), [sym_identifier] = ACTIONS(729), [aux_sym_preproc_include_token1] = ACTIONS(622), @@ -14900,18 +14908,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(48), [sym_type_definition] = STATE(48), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_specifiers] = STATE(1009), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(48), [sym_labeled_statement] = STATE(48), [sym_expression_statement] = STATE(48), @@ -14924,28 +14932,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(334), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(335), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(48), [sym_identifier] = ACTIONS(725), [aux_sym_preproc_include_token1] = ACTIONS(618), @@ -15026,18 +15034,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(62), [sym_type_definition] = STATE(62), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_specifiers] = STATE(1009), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(62), [sym_labeled_statement] = STATE(62), [sym_expression_statement] = STATE(62), @@ -15050,28 +15058,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(334), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(335), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(62), [sym_identifier] = ACTIONS(725), [aux_sym_preproc_include_token1] = ACTIONS(622), @@ -15152,18 +15160,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(56), [sym_type_definition] = STATE(56), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_specifiers] = STATE(1009), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym_attributed_non_case_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -15176,28 +15184,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(334), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_attributed_declarator_repeat1] = STATE(335), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [aux_sym_case_statement_repeat1] = STATE(56), [sym_identifier] = ACTIONS(725), [aux_sym_preproc_include_token1] = ACTIONS(616), @@ -15275,40 +15283,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [63] = { - [sym_declaration] = STATE(490), + [sym_declaration] = STATE(499), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1011), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym__expression] = STATE(730), - [sym_comma_expression] = STATE(1365), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_comma_expression] = STATE(1366), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15358,40 +15366,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(494), + [sym_declaration] = STATE(497), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1011), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1442), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15441,40 +15449,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [65] = { - [sym_declaration] = STATE(497), + [sym_declaration] = STATE(502), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1011), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [sym__expression] = STATE(724), + [sym_comma_expression] = STATE(1432), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15524,40 +15532,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(483), + [sym_declaration] = STATE(490), [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1011), [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__type_specifier] = STATE(696), + [sym_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), + [sym__expression] = STATE(739), + [sym_comma_expression] = STATE(1450), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_sized_type_specifier_repeat1] = STATE(776), + [aux_sym_sized_type_specifier_repeat1] = STATE(775), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15607,24 +15615,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [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__expression] = STATE(607), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), + [sym_pointer_expression] = STATE(591), + [sym_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), + [sym_subscript_expression] = STATE(591), + [sym_call_expression] = STATE(591), + [sym_field_expression] = STATE(591), + [sym_compound_literal_expression] = STATE(549), + [sym_parenthesized_expression] = STATE(591), + [sym_initializer_list] = STATE(608), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(870), [anon_sym_COMMA] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(872), @@ -19651,24 +19659,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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__expression] = STATE(634), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), + [sym_pointer_expression] = STATE(591), + [sym_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), + [sym_subscript_expression] = STATE(591), + [sym_call_expression] = STATE(591), + [sym_field_expression] = STATE(591), + [sym_compound_literal_expression] = STATE(549), + [sym_parenthesized_expression] = STATE(591), + [sym_initializer_list] = STATE(608), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(870), [anon_sym_LPAREN2] = ACTIONS(1088), [anon_sym_BANG] = ACTIONS(1090), @@ -20419,82 +20427,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [129] = { - [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(982), [sym_identifier] = ACTIONS(980), [aux_sym_preproc_include_token1] = ACTIONS(980), @@ -20570,6 +20502,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, + [130] = { + [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), + }, [131] = { [sym_identifier] = ACTIONS(968), [aux_sym_preproc_include_token1] = ACTIONS(968), @@ -20799,82 +20807,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [134] = { - [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] = { [ts_builtin_sym_end] = ACTIONS(966), [sym_identifier] = ACTIONS(964), [aux_sym_preproc_include_token1] = ACTIONS(964), @@ -20950,6 +20882,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, + [135] = { + [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), + }, [136] = { [ts_builtin_sym_end] = ACTIONS(916), [sym_identifier] = ACTIONS(914), @@ -21407,82 +21415,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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), - }, - [143] = { [ts_builtin_sym_end] = ACTIONS(946), [sym_identifier] = ACTIONS(944), [aux_sym_preproc_include_token1] = ACTIONS(944), @@ -21558,6 +21490,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, + [143] = { + [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), + }, [144] = { [ts_builtin_sym_end] = ACTIONS(946), [sym_identifier] = ACTIONS(944), @@ -29014,24 +29022,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [aux_sym_attributed_declarator_repeat1] = STATE(613), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), @@ -29314,24 +29322,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [aux_sym_attributed_declarator_repeat1] = STATE(613), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), @@ -29375,81 +29383,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -29524,6 +29457,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, + [248] = { + [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), + }, [249] = { [sym_identifier] = ACTIONS(1116), [aux_sym_preproc_include_token1] = ACTIONS(1116), @@ -29764,24 +29772,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(124), [sym_continue_statement] = STATE(124), [sym_goto_statement] = STATE(124), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [aux_sym_attributed_declarator_repeat1] = STATE(613), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), @@ -30364,24 +30372,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [aux_sym_attributed_declarator_repeat1] = STATE(613), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), @@ -30650,81 +30658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30799,7 +30732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [266] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1034), [sym_identifier] = ACTIONS(1032), [aux_sym_preproc_include_token1] = ACTIONS(1032), @@ -30874,6 +30807,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, + [266] = { + [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), + }, [267] = { [sym_identifier] = ACTIONS(1108), [aux_sym_preproc_include_token1] = ACTIONS(1108), @@ -31100,6 +31108,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [270] = { + [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), + }, + [271] = { [sym_identifier] = ACTIONS(1112), [aux_sym_preproc_include_token1] = ACTIONS(1112), [aux_sym_preproc_def_token1] = ACTIONS(1112), @@ -31174,81 +31257,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [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), @@ -31400,81 +31408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31549,79 +31482,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, + [275] = { + [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), + }, [276] = { - [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_RBRACE] = 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_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), }, [277] = { @@ -31700,81 +31708,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31849,74 +31782,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [279] = { + [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), + }, + [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), @@ -31925,7 +31933,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31953,6 +31960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32075,81 +32083,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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), - }, - [284] = { [sym_identifier] = ACTIONS(1068), [aux_sym_preproc_include_token1] = ACTIONS(1068), [aux_sym_preproc_def_token1] = ACTIONS(1068), @@ -32224,7 +32157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [285] = { + [284] = { [sym_identifier] = ACTIONS(1056), [aux_sym_preproc_include_token1] = ACTIONS(1056), [aux_sym_preproc_def_token1] = ACTIONS(1056), @@ -32299,7 +32232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [286] = { + [285] = { [sym_identifier] = ACTIONS(1080), [aux_sym_preproc_include_token1] = ACTIONS(1080), [aux_sym_preproc_def_token1] = ACTIONS(1080), @@ -32374,7 +32307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [287] = { + [286] = { [sym_identifier] = ACTIONS(1072), [aux_sym_preproc_include_token1] = ACTIONS(1072), [aux_sym_preproc_def_token1] = ACTIONS(1072), @@ -32449,6 +32382,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, + [287] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [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_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), + }, [288] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), @@ -32600,78 +32608,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [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_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_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), [sym_comment] = ACTIONS(3), }, [291] = { @@ -33200,78 +33208,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [298] = { - [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), + [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), }, [299] = { @@ -33350,81 +33358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [301] = { [sym_identifier] = ACTIONS(1056), [aux_sym_preproc_include_token1] = ACTIONS(1056), [aux_sym_preproc_def_token1] = ACTIONS(1056), @@ -33499,7 +33432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [302] = { + [301] = { [ts_builtin_sym_end] = ACTIONS(1030), [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(1028), @@ -33574,82 +33507,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [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), + [302] = { + [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), }, - [304] = { + [303] = { [sym_identifier] = ACTIONS(1124), [aux_sym_preproc_include_token1] = ACTIONS(1124), [aux_sym_preproc_def_token1] = ACTIONS(1124), @@ -33724,6 +33657,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1124), [sym_comment] = ACTIONS(3), }, + [304] = { + [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_RBRACE] = 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), + }, [305] = { [sym_compound_statement] = STATE(100), [sym_labeled_statement] = STATE(100), @@ -33738,24 +33746,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(100), [sym_continue_statement] = STATE(100), [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -33797,37 +33805,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_compound_statement] = STATE(1410), + [sym_labeled_statement] = STATE(1410), + [sym_expression_statement] = STATE(1410), + [sym_if_statement] = STATE(1410), + [sym_switch_statement] = STATE(1410), + [sym_case_statement] = STATE(1410), + [sym_while_statement] = STATE(1410), + [sym_do_statement] = STATE(1410), + [sym_for_statement] = STATE(1410), + [sym_return_statement] = STATE(1410), + [sym_break_statement] = STATE(1410), + [sym_continue_statement] = STATE(1410), + [sym_goto_statement] = STATE(1410), + [sym__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [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_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), + }, + [307] = { + [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(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(549), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -33868,7 +33948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [307] = { + [308] = { [sym_compound_statement] = STATE(207), [sym_labeled_statement] = STATE(207), [sym_expression_statement] = STATE(207), @@ -33882,24 +33962,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -33940,7 +34020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [308] = { + [309] = { [sym_compound_statement] = STATE(206), [sym_labeled_statement] = STATE(206), [sym_expression_statement] = STATE(206), @@ -33954,24 +34034,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34012,7 +34092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [309] = { + [310] = { [sym_compound_statement] = STATE(203), [sym_labeled_statement] = STATE(203), [sym_expression_statement] = STATE(203), @@ -34026,24 +34106,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34084,7 +34164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [310] = { + [311] = { [sym_compound_statement] = STATE(202), [sym_labeled_statement] = STATE(202), [sym_expression_statement] = STATE(202), @@ -34098,24 +34178,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34156,7 +34236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [311] = { + [312] = { [sym_compound_statement] = STATE(200), [sym_labeled_statement] = STATE(200), [sym_expression_statement] = STATE(200), @@ -34170,24 +34250,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34228,38 +34308,38 @@ 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(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), + [313] = { + [sym_compound_statement] = STATE(1447), + [sym_labeled_statement] = STATE(1447), + [sym_expression_statement] = STATE(1447), + [sym_if_statement] = STATE(1447), + [sym_switch_statement] = STATE(1447), + [sym_case_statement] = STATE(1447), + [sym_while_statement] = STATE(1447), + [sym_do_statement] = STATE(1447), + [sym_for_statement] = STATE(1447), + [sym_return_statement] = STATE(1447), + [sym_break_statement] = STATE(1447), + [sym_continue_statement] = STATE(1447), + [sym_goto_statement] = STATE(1447), + [sym__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34300,7 +34380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [313] = { + [314] = { [sym_compound_statement] = STATE(199), [sym_labeled_statement] = STATE(199), [sym_expression_statement] = STATE(199), @@ -34314,24 +34394,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34372,7 +34452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [314] = { + [315] = { [sym_compound_statement] = STATE(198), [sym_labeled_statement] = STATE(198), [sym_expression_statement] = STATE(198), @@ -34386,24 +34466,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34444,38 +34524,38 @@ 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(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), + [316] = { + [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(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34516,39 +34596,40 @@ 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(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), + [317] = { + [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(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), - [sym_identifier] = ACTIONS(1138), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [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), @@ -34556,19 +34637,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(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_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_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), @@ -34588,7 +34668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [317] = { + [318] = { [sym_compound_statement] = STATE(92), [sym_labeled_statement] = STATE(92), [sym_expression_statement] = STATE(92), @@ -34602,24 +34682,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(92), [sym_continue_statement] = STATE(92), [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34660,7 +34740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [318] = { + [319] = { [sym_compound_statement] = STATE(208), [sym_labeled_statement] = STATE(208), [sym_expression_statement] = STATE(208), @@ -34674,24 +34754,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34732,7 +34812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [319] = { + [320] = { [sym_compound_statement] = STATE(227), [sym_labeled_statement] = STATE(227), [sym_expression_statement] = STATE(227), @@ -34746,24 +34826,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34804,39 +34884,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(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), + [321] = { + [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(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), - [sym_identifier] = ACTIONS(1134), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34844,19 +34924,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), @@ -34876,7 +34956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [321] = { + [322] = { [sym_compound_statement] = STATE(233), [sym_labeled_statement] = STATE(233), [sym_expression_statement] = STATE(233), @@ -34890,24 +34970,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34948,39 +35028,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [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), + [323] = { + [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(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [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_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), + }, + [324] = { + [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(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(549), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [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_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), + }, + [325] = { + [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(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(549), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -34990,10 +35213,11 @@ 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), @@ -35020,151 +35244,7 @@ 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(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), - [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_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), - }, - [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), - [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_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), - }, - [325] = { + [326] = { [sym_compound_statement] = STATE(195), [sym_labeled_statement] = STATE(195), [sym_expression_statement] = STATE(195), @@ -35178,24 +35258,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35236,39 +35316,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(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), + [327] = { + [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(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), - [sym_identifier] = ACTIONS(1138), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35276,19 +35356,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(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_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), @@ -35308,39 +35388,39 @@ 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(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), + [328] = { + [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(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), - [sym_identifier] = ACTIONS(1134), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35348,19 +35428,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), @@ -35380,7 +35460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [328] = { + [329] = { [sym_compound_statement] = STATE(73), [sym_labeled_statement] = STATE(73), [sym_expression_statement] = STATE(73), @@ -35394,24 +35474,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(73), [sym_continue_statement] = STATE(73), [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35452,7 +35532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [329] = { + [330] = { [sym_compound_statement] = STATE(153), [sym_labeled_statement] = STATE(153), [sym_expression_statement] = STATE(153), @@ -35466,24 +35546,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35524,39 +35604,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(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), + [331] = { + [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(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), - [sym_identifier] = ACTIONS(1134), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35564,19 +35644,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), @@ -35596,7 +35676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [331] = { + [332] = { [sym_compound_statement] = STATE(95), [sym_labeled_statement] = STATE(95), [sym_expression_statement] = STATE(95), @@ -35610,24 +35690,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(95), [sym_continue_statement] = STATE(95), [sym_goto_statement] = STATE(95), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35668,39 +35748,39 @@ 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(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), + [333] = { + [sym_compound_statement] = STATE(1427), + [sym_labeled_statement] = STATE(1427), + [sym_expression_statement] = STATE(1427), + [sym_if_statement] = STATE(1427), + [sym_switch_statement] = STATE(1427), + [sym_case_statement] = STATE(1427), + [sym_while_statement] = STATE(1427), + [sym_do_statement] = STATE(1427), + [sym_for_statement] = STATE(1427), + [sym_return_statement] = STATE(1427), + [sym_break_statement] = STATE(1427), + [sym_continue_statement] = STATE(1427), + [sym_goto_statement] = STATE(1427), + [sym__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), - [sym_identifier] = ACTIONS(1138), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35708,19 +35788,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(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_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), @@ -35740,7 +35820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [333] = { + [334] = { [sym_compound_statement] = STATE(70), [sym_labeled_statement] = STATE(70), [sym_expression_statement] = STATE(70), @@ -35754,24 +35834,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(70), [sym_continue_statement] = STATE(70), [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35812,7 +35892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [334] = { + [335] = { [sym_attribute_declaration] = STATE(613), [sym_compound_statement] = STATE(185), [sym_labeled_statement] = STATE(185), @@ -35826,24 +35906,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [aux_sym_attributed_declarator_repeat1] = STATE(613), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), @@ -35884,7 +35964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [335] = { + [336] = { [sym_compound_statement] = STATE(98), [sym_labeled_statement] = STATE(98), [sym_expression_statement] = STATE(98), @@ -35898,24 +35978,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(98), [sym_continue_statement] = STATE(98), [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35956,7 +36036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [336] = { + [337] = { [sym_compound_statement] = STATE(232), [sym_labeled_statement] = STATE(232), [sym_expression_statement] = STATE(232), @@ -35970,24 +36050,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36028,7 +36108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [337] = { + [338] = { [sym_compound_statement] = STATE(99), [sym_labeled_statement] = STATE(99), [sym_expression_statement] = STATE(99), @@ -36042,24 +36122,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(99), [sym_continue_statement] = STATE(99), [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36100,7 +36180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [338] = { + [339] = { [sym_compound_statement] = STATE(223), [sym_labeled_statement] = STATE(223), [sym_expression_statement] = STATE(223), @@ -36114,24 +36194,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36172,7 +36252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [339] = { + [340] = { [sym_compound_statement] = STATE(145), [sym_labeled_statement] = STATE(145), [sym_expression_statement] = STATE(145), @@ -36186,24 +36266,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36244,7 +36324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [340] = { + [341] = { [sym_compound_statement] = STATE(221), [sym_labeled_statement] = STATE(221), [sym_expression_statement] = STATE(221), @@ -36258,24 +36338,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36316,38 +36396,38 @@ 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(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), + [342] = { + [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(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36388,78 +36468,6 @@ 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(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), - [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_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), - }, [343] = { [sym_compound_statement] = STATE(146), [sym_labeled_statement] = STATE(146), @@ -36474,24 +36482,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36546,24 +36554,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36618,24 +36626,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36690,24 +36698,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(76), [sym_continue_statement] = STATE(76), [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36762,24 +36770,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36834,24 +36842,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(102), [sym_continue_statement] = STATE(102), [sym_goto_statement] = STATE(102), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36893,37 +36901,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36965,37 +36973,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37050,24 +37058,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(79), [sym_continue_statement] = STATE(79), [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37122,24 +37130,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37194,24 +37202,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37266,24 +37274,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37338,24 +37346,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37410,24 +37418,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37482,24 +37490,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37554,24 +37562,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37626,24 +37634,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37698,24 +37706,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37770,24 +37778,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(81), [sym_continue_statement] = STATE(81), [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37842,24 +37850,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37901,150 +37909,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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), - [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_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), - }, - [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), - [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_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), - }, - [365] = { [sym_compound_statement] = STATE(230), [sym_labeled_statement] = STATE(230), [sym_expression_statement] = STATE(230), @@ -38058,24 +37922,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -38116,6 +37980,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, + [364] = { + [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(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(549), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [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_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), + }, + [365] = { + [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(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(549), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [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_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), + }, [366] = { [sym_attribute_declaration] = STATE(613), [sym_compound_statement] = STATE(80), @@ -38130,24 +38138,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(80), [sym_continue_statement] = STATE(80), [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [aux_sym_attributed_declarator_repeat1] = STATE(613), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), @@ -38202,24 +38210,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(83), [sym_continue_statement] = STATE(83), [sym_goto_statement] = STATE(83), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -38261,6 +38269,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [368] = { + [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(740), + [sym_comma_expression] = STATE(1380), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), + [sym_pointer_expression] = STATE(614), + [sym_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(549), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [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), + [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), + }, + [369] = { [sym_compound_statement] = STATE(152), [sym_labeled_statement] = STATE(152), [sym_expression_statement] = STATE(152), @@ -38274,24 +38354,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -38332,39 +38412,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [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), + [370] = { + [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(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), - [sym_identifier] = ACTIONS(1140), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38372,19 +38452,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), @@ -38404,39 +38484,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [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), + [371] = { + [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(700), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), - [sym_identifier] = ACTIONS(1134), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_identifier] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38444,19 +38524,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), @@ -38476,38 +38556,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [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), + [372] = { + [sym_compound_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_case_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym__expression] = STATE(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -38548,7 +38628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [372] = { + [373] = { [sym_compound_statement] = STATE(219), [sym_labeled_statement] = STATE(219), [sym_expression_statement] = STATE(219), @@ -38562,24 +38642,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(698), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -38620,38 +38700,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [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), + [374] = { + [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(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -38692,7 +38772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [374] = { + [375] = { [sym_compound_statement] = STATE(87), [sym_labeled_statement] = STATE(87), [sym_expression_statement] = STATE(87), @@ -38706,24 +38786,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(87), [sym_continue_statement] = STATE(87), [sym_goto_statement] = STATE(87), - [sym__expression] = STATE(709), + [sym__expression] = STATE(740), [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -38764,38 +38844,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [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), + [376] = { + [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(701), + [sym_comma_expression] = STATE(1431), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(572), - [sym_concatenated_string] = STATE(572), - [sym_string_literal] = STATE(429), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1134), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -38836,97 +38916,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [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), - [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_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), - }, [377] = { - [sym__expression] = STATE(547), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym__expression] = STATE(607), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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_initializer_list] = STATE(608), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), [sym_identifier] = ACTIONS(1144), [anon_sym_COMMA] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(872), @@ -38979,33 +38987,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [378] = { - [sym_type_qualifier] = STATE(866), + [sym_type_qualifier] = STATE(860), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_comma_expression] = STATE(1423), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_type_descriptor] = STATE(1425), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_type_definition_repeat1] = STATE(860), [aux_sym_sized_type_specifier_repeat1] = STATE(999), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39047,33 +39055,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [379] = { - [sym_type_qualifier] = STATE(866), + [sym_type_qualifier] = STATE(860), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_comma_expression] = STATE(1423), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), [sym_type_descriptor] = STATE(1347), - [sym_sizeof_expression] = STATE(572), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_type_definition_repeat1] = STATE(860), [aux_sym_sized_type_specifier_repeat1] = STATE(999), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39115,33 +39123,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [380] = { - [sym_type_qualifier] = STATE(866), + [sym_type_qualifier] = STATE(860), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_comma_expression] = STATE(1423), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_type_descriptor] = STATE(1348), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_type_definition_repeat1] = STATE(860), [aux_sym_sized_type_specifier_repeat1] = STATE(999), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39183,33 +39191,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [381] = { - [sym_type_qualifier] = STATE(866), + [sym_type_qualifier] = STATE(860), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_comma_expression] = STATE(1423), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_type_descriptor] = STATE(1365), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_type_definition_repeat1] = STATE(860), [aux_sym_sized_type_specifier_repeat1] = STATE(999), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39251,33 +39259,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [382] = { - [sym_type_qualifier] = STATE(866), + [sym_type_qualifier] = STATE(860), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_comma_expression] = STATE(1423), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_type_descriptor] = STATE(1422), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_type_definition_repeat1] = STATE(860), [aux_sym_sized_type_specifier_repeat1] = STATE(999), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39319,33 +39327,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [383] = { - [sym_type_qualifier] = STATE(866), + [sym_type_qualifier] = STATE(860), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_comma_expression] = STATE(1423), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_type_descriptor] = STATE(1375), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_type_definition_repeat1] = STATE(860), [aux_sym_sized_type_specifier_repeat1] = STATE(999), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39387,33 +39395,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [384] = { - [sym_type_qualifier] = STATE(866), + [sym_type_qualifier] = STATE(860), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_comma_expression] = STATE(1423), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_type_descriptor] = STATE(1398), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_type_definition_repeat1] = STATE(860), [aux_sym_sized_type_specifier_repeat1] = STATE(999), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39455,33 +39463,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [385] = { - [sym_type_qualifier] = STATE(866), + [sym_type_qualifier] = STATE(860), [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_sized_type_specifier] = STATE(881), + [sym_enum_specifier] = STATE(881), + [sym_struct_specifier] = STATE(881), + [sym_union_specifier] = STATE(881), [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(572), - [sym_assignment_expression] = STATE(572), + [sym_comma_expression] = STATE(1423), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), [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_unary_expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_type_descriptor] = STATE(1419), + [sym_sizeof_expression] = STATE(549), [sym_subscript_expression] = STATE(614), [sym_call_expression] = STATE(614), [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(572), + [sym_compound_literal_expression] = STATE(549), [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), + [sym_char_literal] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(436), + [sym_macro_type_specifier] = STATE(881), + [aux_sym_type_definition_repeat1] = STATE(860), [aux_sym_sized_type_specifier_repeat1] = STATE(999), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39593,7 +39601,75 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - [71] = 21, + [71] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1156), 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(1154), 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, + [142] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -39602,30 +39678,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1094), 1, anon_sym_AMP, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, - anon_sym_LPAREN2, ACTIONS(1160), 1, + anon_sym_LPAREN2, + ACTIONS(1164), 1, anon_sym_TILDE, - ACTIONS(1162), 1, - anon_sym_STAR, ACTIONS(1166), 1, + anon_sym_STAR, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(549), 1, + STATE(608), 1, sym_initializer_list, - STATE(630), 1, + STATE(634), 1, sym__expression, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1158), 3, + ACTIONS(1162), 3, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, @@ -39647,13 +39723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -39679,74 +39755,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, ACTIONS(3), 1, sym_comment, @@ -39844,22 +39852,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___based, ACTIONS(1196), 1, anon_sym_LBRACK, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(941), 1, + STATE(935), 1, sym__declaration_specifiers, - STATE(1092), 1, + STATE(1091), 1, sym__declarator, - STATE(1121), 1, - sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1178), 1, - sym_parameter_declaration, - STATE(1402), 1, + STATE(1149), 1, + sym__abstract_declarator, + STATE(1403), 1, sym_ms_based_modifier, + STATE(1173), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, @@ -39870,7 +39879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -39881,13 +39890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -39901,7 +39910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [439] = 26, + [440] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -39932,16 +39941,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1212), 1, sym_preproc_directive, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1278), 2, + STATE(1452), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -39960,7 +39969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -39974,7 +39983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(414), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -39983,7 +39992,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, - [547] = 26, + [548] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40014,16 +40023,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1214), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1323), 2, + STATE(1359), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40042,7 +40051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40056,7 +40065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(414), 8, + STATE(415), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40065,7 +40074,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, - [655] = 26, + [656] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40096,16 +40105,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1216), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1425), 2, + STATE(1335), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40124,7 +40133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40138,7 +40147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(414), 8, + STATE(403), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40147,7 +40156,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, - [763] = 26, + [764] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40178,16 +40187,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1218), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1355), 2, + STATE(1411), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40206,7 +40215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40220,7 +40229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(403), 8, + STATE(415), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40229,7 +40238,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, - [871] = 26, + [872] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40260,16 +40269,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1220), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1411), 2, + STATE(1426), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40288,7 +40297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40302,7 +40311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(414), 8, + STATE(415), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40311,7 +40320,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, - [979] = 26, + [980] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40342,16 +40351,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1222), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1428), 2, + STATE(1290), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40370,7 +40379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40384,7 +40393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(395), 8, + STATE(400), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40393,7 +40402,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, - [1087] = 26, + [1088] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40424,16 +40433,98 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1224), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 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(881), 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(404), 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, + [1196] = 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(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(1226), 1, + aux_sym_preproc_if_token2, + STATE(696), 1, + sym__type_specifier, + STATE(775), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1336), 2, + STATE(1356), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40452,7 +40543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40475,89 +40566,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, - [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(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(1226), 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(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, - 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, - [1303] = 26, + [1304] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40588,16 +40597,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1228), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1326), 2, + STATE(1279), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40616,7 +40625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40630,7 +40639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(414), 8, + STATE(415), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40639,7 +40648,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, - [1411] = 26, + [1412] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40670,16 +40679,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1230), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1451), 2, + STATE(1327), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40698,7 +40707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40712,7 +40721,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(415), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40721,7 +40730,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, - [1519] = 26, + [1520] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40752,16 +40761,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1232), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1295), 2, + STATE(1325), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40780,7 +40789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40803,7 +40812,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, + [1628] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40834,16 +40843,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1234), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1324), 2, + STATE(1428), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40862,7 +40871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40876,7 +40885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(398), 8, + STATE(394), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40885,7 +40894,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, + [1736] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40916,16 +40925,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1236), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1358), 2, + STATE(1324), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40944,7 +40953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40958,7 +40967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(414), 8, + STATE(415), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40967,7 +40976,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, + [1844] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40998,16 +41007,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1238), 1, aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1206), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1325), 2, + STATE(1349), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -41026,7 +41035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -41040,7 +41049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(391), 8, + STATE(415), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41049,7 +41058,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, - [1951] = 10, + [1952] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1244), 1, @@ -41114,7 +41123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2026] = 10, + [2027] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1244), 1, @@ -41125,74 +41134,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1261), 1, + 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_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, - [2101] = 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(1261), 1, - anon_sym_COLON, - ACTIONS(1263), 1, anon_sym_SEMI, ACTIONS(1259), 10, anon_sym_STAR_EQ, @@ -41245,7 +41189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [2178] = 10, + [2104] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1244), 1, @@ -41256,7 +41200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1266), 1, + ACTIONS(1264), 1, anon_sym_COLON, ACTIONS(1259), 10, anon_sym_STAR_EQ, @@ -41310,7 +41254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2253] = 11, + [2179] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1244), 1, @@ -41321,9 +41265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1263), 1, - anon_sym_SEMI, - ACTIONS(1268), 1, + ACTIONS(1266), 1, anon_sym_COLON, ACTIONS(1259), 10, anon_sym_STAR_EQ, @@ -41336,19 +41278,6 @@ 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, ACTIONS(1248), 12, anon_sym_DASH, anon_sym_PLUS, @@ -41376,33 +41305,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + ACTIONS(1242), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41410,39 +41313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_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, - [2407] = 10, + [2254] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1244), 1, @@ -41507,7 +41384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2482] = 11, + [2329] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1244), 1, @@ -41518,10 +41395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1257), 1, - anon_sym_COLON, - ACTIONS(1263), 1, + ACTIONS(1261), 1, anon_sym_SEMI, + ACTIONS(1268), 1, + anon_sym_COLON, ACTIONS(1259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -41573,7 +41450,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [2559] = 23, + [2406] = 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(1261), 1, + anon_sym_SEMI, + ACTIONS(1264), 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, + [2483] = 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(1261), 1, + anon_sym_SEMI, + 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, + 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, + [2560] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -41594,9 +41603,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1276), 1, anon_sym_DOT, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(674), 1, + STATE(688), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -41610,14 +41619,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1159), 2, + STATE(1203), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1107), 3, + STATE(1105), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -41639,7 +41648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -41650,7 +41659,70 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2659] = 23, + [2660] = 9, + 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(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_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, + [2732] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1278), 1, @@ -41675,11 +41747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(1322), 1, anon_sym_union, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(1001), 1, sym__declaration_specifiers, ACTIONS(1289), 2, aux_sym_preproc_ifdef_token1, @@ -41704,7 +41776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -41718,7 +41790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(414), 8, + STATE(415), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41727,70 +41799,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, - [2759] = 9, - 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(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_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, - [2831] = 22, + [2832] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -41809,9 +41818,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1325), 1, anon_sym_RBRACE, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(742), 1, + STATE(706), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -41825,14 +41834,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1237), 2, + STATE(1216), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1107), 3, + STATE(1105), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -41854,7 +41863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -41865,7 +41874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2928] = 22, + [2929] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -41884,82 +41893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1327), 1, anon_sym_RBRACE, - STATE(429), 1, - sym_string_literal, - STATE(742), 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(1237), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - 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, - 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, - [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(884), 1, - anon_sym_LBRACE, - ACTIONS(1144), 1, - sym_identifier, - ACTIONS(1274), 1, - anon_sym_LBRACK, - ACTIONS(1276), 1, - anon_sym_DOT, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(742), 1, + STATE(706), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -41973,14 +41909,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1237), 2, + STATE(1216), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1107), 3, + STATE(1105), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -42002,7 +41938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42013,59 +41949,59 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3119] = 23, + [3026] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, - sym_identifier, - ACTIONS(1287), 1, - aux_sym_preproc_if_token2, - ACTIONS(1298), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1304), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1313), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1316), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1319), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1322), 1, + ACTIONS(55), 1, anon_sym_union, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, ACTIONS(1329), 1, aux_sym_preproc_def_token1, - ACTIONS(1332), 1, + ACTIONS(1331), 1, aux_sym_preproc_if_token1, - ACTIONS(1338), 1, + ACTIONS(1335), 1, sym_preproc_directive, - STATE(705), 1, + ACTIONS(1337), 1, + anon_sym_RBRACE, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1335), 2, + ACTIONS(1333), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1307), 4, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1310), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1295), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42079,7 +42015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(419), 8, + STATE(423), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42088,7 +42024,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, - [3217] = 23, + [3124] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -42107,21 +42043,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - ACTIONS(1341), 1, + ACTIONS(1329), 1, aux_sym_preproc_def_token1, - ACTIONS(1343), 1, + ACTIONS(1331), 1, aux_sym_preproc_if_token1, - ACTIONS(1347), 1, + ACTIONS(1335), 1, sym_preproc_directive, - ACTIONS(1349), 1, + ACTIONS(1339), 1, anon_sym_RBRACE, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1000), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1345), 2, + ACTIONS(1333), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, @@ -42140,7 +42076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42154,7 +42090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(418), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42163,7 +42099,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, - [3315] = 23, + [3222] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -42182,21 +42118,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - ACTIONS(1351), 1, + ACTIONS(1341), 1, aux_sym_preproc_def_token1, - ACTIONS(1353), 1, + ACTIONS(1343), 1, aux_sym_preproc_if_token1, - ACTIONS(1355), 1, + ACTIONS(1345), 1, aux_sym_preproc_if_token2, - ACTIONS(1359), 1, + ACTIONS(1349), 1, sym_preproc_directive, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(1000), 1, sym__declaration_specifiers, - ACTIONS(1357), 2, + ACTIONS(1347), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, @@ -42215,7 +42151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42229,7 +42165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(419), 8, + STATE(422), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42238,59 +42174,132 @@ 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, + [3320] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + 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(1144), 1, + sym_identifier, + ACTIONS(1274), 1, + anon_sym_LBRACK, + ACTIONS(1276), 1, + anon_sym_DOT, + STATE(436), 1, + sym_string_literal, + STATE(706), 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(1216), 2, + sym_initializer_list, + sym_initializer_pair, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + STATE(1105), 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(614), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [3414] = 23, + ACTIONS(3), 1, + sym_comment, + 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(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, - sym_identifier, ACTIONS(1351), 1, aux_sym_preproc_def_token1, - ACTIONS(1353), 1, + ACTIONS(1354), 1, aux_sym_preproc_if_token1, - ACTIONS(1359), 1, + ACTIONS(1360), 1, sym_preproc_directive, - ACTIONS(1361), 1, - aux_sym_preproc_if_token2, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(1000), 1, sym__declaration_specifiers, ACTIONS(1357), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + 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, - ACTIONS(43), 5, + ACTIONS(1295), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42304,7 +42313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(421), 8, + STATE(422), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42313,59 +42322,59 @@ 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, + [3512] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1278), 1, + sym_identifier, + 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(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, - sym_identifier, - ACTIONS(1341), 1, + ACTIONS(1363), 1, aux_sym_preproc_def_token1, - ACTIONS(1343), 1, + ACTIONS(1366), 1, aux_sym_preproc_if_token1, - ACTIONS(1347), 1, + ACTIONS(1372), 1, sym_preproc_directive, - ACTIONS(1363), 1, + ACTIONS(1375), 1, anon_sym_RBRACE, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1000), 1, + STATE(1002), 1, sym__declaration_specifiers, - ACTIONS(1345), 2, + ACTIONS(1369), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + 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, - ACTIONS(43), 5, + ACTIONS(1295), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42379,7 +42388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(424), 8, + STATE(423), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42388,59 +42397,59 @@ 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, + [3610] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, - sym_identifier, - ACTIONS(1298), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1304), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1313), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1316), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1319), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1322), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1365), 1, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1198), 1, + sym_identifier, + ACTIONS(1341), 1, aux_sym_preproc_def_token1, - ACTIONS(1368), 1, + ACTIONS(1343), 1, aux_sym_preproc_if_token1, - ACTIONS(1374), 1, + ACTIONS(1349), 1, sym_preproc_directive, ACTIONS(1377), 1, - anon_sym_RBRACE, - STATE(705), 1, + aux_sym_preproc_if_token2, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, STATE(1000), 1, sym__declaration_specifiers, - ACTIONS(1371), 2, + ACTIONS(1347), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1307), 4, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1310), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1295), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42454,7 +42463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(424), 8, + STATE(420), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42463,37 +42472,37 @@ 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] = 20, + [3708] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, ACTIONS(1379), 1, anon_sym_STAR, ACTIONS(1381), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(753), 1, + STATE(745), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(435), 2, + STATE(433), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -42517,13 +42526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42534,90 +42543,111 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3798] = 5, + [3799] = 26, ACTIONS(3), 1, sym_comment, - STATE(432), 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(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, + 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, - 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, + ACTIONS(1196), 1, 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(1198), 1, + sym_identifier, + ACTIONS(1385), 1, + anon_sym_LPAREN2, + ACTIONS(1387), 1, + anon_sym_STAR, + STATE(696), 1, + sym__type_specifier, + STATE(775), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(935), 1, + sym__declaration_specifiers, + STATE(1143), 1, + sym_parameter_list, + STATE(1149), 1, + sym__abstract_declarator, + STATE(1173), 2, + sym_variadic_parameter, + 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(1141), 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(881), 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, + [3902] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, ACTIONS(1389), 1, anon_sym_STAR, ACTIONS(1391), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(751), 1, + STATE(749), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, STATE(652), 2, @@ -42644,13 +42674,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42661,37 +42691,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3950] = 20, + [3993] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, ACTIONS(1393), 1, anon_sym_STAR, ACTIONS(1395), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(796), 1, + STATE(771), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(652), 2, + STATE(437), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -42715,13 +42745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42732,93 +42762,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4041] = 5, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_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, + [4084] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, ACTIONS(1397), 1, anon_sym_STAR, ACTIONS(1399), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(760), 1, + STATE(791), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(433), 2, + STATE(427), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -42842,13 +42816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42859,37 +42833,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4193] = 20, + [4175] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, ACTIONS(1401), 1, anon_sym_STAR, ACTIONS(1403), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(745), 1, + STATE(776), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(428), 2, + STATE(652), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -42913,13 +42887,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42930,13 +42904,13 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4284] = 5, + [4266] = 5, ACTIONS(3), 1, sym_comment, - STATE(432), 2, + STATE(435), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1409), 5, + ACTIONS(87), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -42986,34 +42960,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [4345] = 20, + [4327] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, - ACTIONS(1412), 1, + ACTIONS(1409), 1, anon_sym_STAR, - ACTIONS(1414), 1, + ACTIONS(1411), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(816), 1, + STATE(760), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, STATE(652), 2, @@ -43040,13 +43014,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43057,37 +43031,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4436] = 20, + [4418] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, - ACTIONS(1416), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1418), 1, + ACTIONS(1415), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(805), 1, + STATE(746), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(436), 2, + STATE(652), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -43111,13 +43085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43128,37 +43102,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4527] = 20, + [4509] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, - ACTIONS(1420), 1, + ACTIONS(1417), 1, anon_sym_STAR, - ACTIONS(1422), 1, + ACTIONS(1419), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(793), 1, + STATE(768), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(652), 2, + STATE(432), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -43182,13 +43156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43199,34 +43173,146 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4618] = 20, + [4600] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(435), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1425), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1423), 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(1421), 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, + [4661] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(431), 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, + anon_sym_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, + [4722] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, - ACTIONS(1424), 1, + ACTIONS(1428), 1, anon_sym_STAR, - ACTIONS(1426), 1, + ACTIONS(1430), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(773), 1, + STATE(788), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, STATE(652), 2, @@ -43253,13 +43339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43270,37 +43356,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4709] = 20, + [4813] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1162), 1, - anon_sym_AMP, ACTIONS(1166), 1, + anon_sym_AMP, + ACTIONS(1170), 1, anon_sym_sizeof, - ACTIONS(1428), 1, + ACTIONS(1432), 1, anon_sym_STAR, - ACTIONS(1430), 1, + ACTIONS(1434), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(770), 1, + STATE(831), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(427), 2, + STATE(430), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -43324,13 +43410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43341,83 +43427,59 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4800] = 26, + [4904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1186), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1188), 1, + ACTIONS(1438), 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(1436), 34, + anon_sym_COMMA, 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, + anon_sym_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, + [4959] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43436,17 +43498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - ACTIONS(1436), 1, + ACTIONS(1440), 1, anon_sym_LBRACE, - STATE(649), 1, + STATE(648), 1, sym_ms_call_modifier, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1014), 1, + STATE(1010), 1, sym__declaration_specifiers, - STATE(272), 3, + STATE(275), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43466,7 +43528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43487,7 +43549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4993] = 21, + [5050] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43506,15 +43568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - ACTIONS(1438), 1, + ACTIONS(1442), 1, anon_sym_LBRACE, - STATE(646), 1, + STATE(647), 1, sym_ms_call_modifier, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1016), 1, + STATE(1013), 1, sym__declaration_specifiers, STATE(120), 3, sym_function_definition, @@ -43536,7 +43598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43557,7 +43619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5084] = 21, + [5141] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43576,17 +43638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - ACTIONS(1440), 1, + ACTIONS(1444), 1, anon_sym_LBRACE, - STATE(645), 1, + STATE(649), 1, sym_ms_call_modifier, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1009), 1, + STATE(1015), 1, sym__declaration_specifiers, - STATE(253), 3, + STATE(272), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43606,7 +43668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43627,7 +43689,59 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5175] = 21, + [5232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1448), 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(1446), 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, + [5287] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43646,17 +43760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - ACTIONS(1442), 1, + ACTIONS(1450), 1, anon_sym_LBRACE, - STATE(648), 1, + STATE(645), 1, sym_ms_call_modifier, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1011), 1, + STATE(1008), 1, sym__declaration_specifiers, - STATE(303), 3, + STATE(253), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43676,7 +43790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43697,111 +43811,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [5378] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -43814,11 +43824,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1452), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(701), 1, + STATE(728), 1, sym__expression, - STATE(1318), 1, + STATE(1321), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -43854,7 +43864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43865,7 +43875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5458] = 18, + [5460] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -43878,11 +43888,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1454), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(708), 1, + STATE(718), 1, sym__expression, - STATE(1419), 1, + STATE(1286), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -43918,7 +43928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43929,35 +43939,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5540] = 18, + [5542] = 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, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1456), 1, - anon_sym_RPAREN, - STATE(429), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(716), 1, + STATE(607), 1, sym__expression, - STATE(1276), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(608), 1, + sym_initializer_list, 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, @@ -43976,13 +43986,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43993,7 +44003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5622] = 18, + [5624] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44004,13 +44014,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1458), 1, + ACTIONS(1456), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(715), 1, + STATE(727), 1, sym__expression, - STATE(1313), 1, + STATE(1417), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44046,7 +44056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44057,7 +44067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5704] = 18, + [5706] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44068,13 +44078,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1460), 1, - anon_sym_RPAREN, - STATE(429), 1, + ACTIONS(1458), 1, + anon_sym_SEMI, + STATE(436), 1, sym_string_literal, - STATE(724), 1, + STATE(744), 1, sym__expression, - STATE(1412), 1, + STATE(1409), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44110,7 +44120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44121,7 +44131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5786] = 18, + [5788] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44132,13 +44142,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1462), 1, + ACTIONS(1460), 1, anon_sym_SEMI, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(702), 1, + STATE(710), 1, sym__expression, - STATE(1398), 1, + STATE(1399), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44174,7 +44184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44185,7 +44195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5868] = 18, + [5870] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44196,13 +44206,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1464), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1462), 1, + anon_sym_RPAREN, + STATE(436), 1, sym_string_literal, - STATE(711), 1, + STATE(734), 1, sym__expression, - STATE(1299), 1, + STATE(1407), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44238,7 +44248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44249,7 +44259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5950] = 18, + [5952] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44260,13 +44270,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1466), 1, + ACTIONS(1464), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(720), 1, + STATE(721), 1, sym__expression, - STATE(1406), 1, + STATE(1289), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44302,7 +44312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44313,7 +44323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6032] = 18, + [6034] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44324,13 +44334,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1468), 1, - anon_sym_RPAREN, - STATE(429), 1, + ACTIONS(1466), 1, + anon_sym_SEMI, + STATE(436), 1, sym_string_literal, - STATE(697), 1, + STATE(707), 1, sym__expression, - STATE(1444), 1, + STATE(1364), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44366,7 +44376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44377,7 +44387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6114] = 18, + [6116] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44388,13 +44398,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1470), 1, + ACTIONS(1468), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(740), 1, + STATE(731), 1, sym__expression, - STATE(1288), 1, + STATE(1277), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44430,7 +44440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44441,7 +44451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6196] = 18, + [6198] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44452,13 +44462,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1472), 1, + ACTIONS(1470), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, STATE(738), 1, sym__expression, - STATE(1339), 1, + STATE(1314), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44494,7 +44504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44505,7 +44515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6278] = 18, + [6280] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44516,13 +44526,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1474), 1, + ACTIONS(1472), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, STATE(737), 1, sym__expression, - STATE(1337), 1, + STATE(1303), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44558,7 +44568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44569,7 +44579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6360] = 18, + [6362] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44580,13 +44590,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1476), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1474), 1, + anon_sym_RPAREN, + STATE(436), 1, sym_string_literal, - STATE(726), 1, + STATE(742), 1, sym__expression, - STATE(1408), 1, + STATE(1413), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44622,7 +44632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44633,7 +44643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6442] = 18, + [6444] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44644,13 +44654,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1478), 1, + ACTIONS(1476), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(743), 1, + STATE(709), 1, sym__expression, - STATE(1350), 1, + STATE(1339), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44686,7 +44696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44697,163 +44707,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6524] = 18, + [6526] = 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, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1480), 1, - anon_sym_RPAREN, - STATE(429), 1, - sym_string_literal, - STATE(718), 1, - sym__expression, - STATE(1332), 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, - [6606] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1144), 1, - sym_identifier, - ACTIONS(1482), 1, - anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(710), 1, + STATE(608), 1, + sym_initializer_list, + STATE(634), 1, sym__expression, - STATE(1317), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1162), 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, - [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(1144), 1, - sym_identifier, - ACTIONS(1484), 1, - anon_sym_RPAREN, - STATE(429), 1, - sym_string_literal, - STATE(732), 1, - sym__expression, - STATE(1335), 1, - sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -44872,13 +44754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44889,7 +44771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6770] = 18, + [6608] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44900,13 +44782,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1486), 1, + ACTIONS(1478), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(735), 1, + STATE(711), 1, sym__expression, - STATE(1285), 1, + STATE(1338), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44942,7 +44824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44953,7 +44835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6852] = 18, + [6690] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44964,13 +44846,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1488), 1, + ACTIONS(1480), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(731), 1, + STATE(733), 1, sym__expression, - STATE(1283), 1, + STATE(1320), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45006,71 +44888,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6934] = 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(1144), 1, - sym_identifier, - STATE(429), 1, - sym_string_literal, - STATE(741), 1, - sym__expression, - STATE(1220), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 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, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45081,7 +44899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7016] = 18, + [6772] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45092,13 +44910,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1490), 1, + ACTIONS(1482), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(699), 1, + STATE(726), 1, sym__expression, - STATE(1418), 1, + STATE(1350), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45134,7 +44952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45145,7 +44963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7098] = 18, + [6854] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45156,13 +44974,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1492), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1484), 1, + anon_sym_RPAREN, + STATE(436), 1, sym_string_literal, - STATE(698), 1, + STATE(715), 1, sym__expression, - STATE(1366), 1, + STATE(1284), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45198,7 +45016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45209,7 +45027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7180] = 18, + [6936] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45220,13 +45038,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1494), 1, + ACTIONS(1486), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(727), 1, + STATE(714), 1, sym__expression, - STATE(1440), 1, + STATE(1336), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45262,7 +45080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45273,7 +45091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7262] = 18, + [7018] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45284,13 +45102,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1496), 1, + ACTIONS(1488), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(703), 1, + STATE(713), 1, sym__expression, - STATE(1312), 1, + STATE(1282), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45326,7 +45144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45337,7 +45155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7344] = 18, + [7100] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45346,16 +45164,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(1144), 1, sym_identifier, - STATE(429), 1, + ACTIONS(1490), 1, + anon_sym_RPAREN, + STATE(436), 1, sym_string_literal, - STATE(744), 1, + STATE(735), 1, sym__expression, - STATE(1239), 1, - sym_initializer_list, + STATE(1420), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45390,7 +45208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45401,7 +45219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7426] = 18, + [7182] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45412,13 +45230,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1498), 1, - anon_sym_RPAREN, - STATE(429), 1, + ACTIONS(1492), 1, + anon_sym_SEMI, + STATE(436), 1, sym_string_literal, - STATE(729), 1, + STATE(736), 1, sym__expression, - STATE(1281), 1, + STATE(1300), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45454,7 +45272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45465,35 +45283,99 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7508] = 18, + [7264] = 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, - sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, ACTIONS(884), 1, anon_sym_LBRACE, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(429), 1, + ACTIONS(1144), 1, + sym_identifier, + STATE(436), 1, sym_string_literal, - STATE(547), 1, + STATE(607), 1, sym__expression, - STATE(549), 1, + STATE(608), 1, sym_initializer_list, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(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(549), 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, + [7346] = 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(1494), 1, + anon_sym_RPAREN, + STATE(436), 1, + sym_string_literal, + STATE(743), 1, + sym__expression, + STATE(1322), 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, @@ -45512,13 +45394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45529,7 +45411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7590] = 18, + [7428] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -45542,11 +45424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(549), 1, + STATE(608), 1, sym_initializer_list, - STATE(630), 1, + STATE(634), 1, sym__expression, ACTIONS(1090), 2, anon_sym_DASH, @@ -45557,7 +45439,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -45576,13 +45458,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45593,7 +45475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7672] = 18, + [7510] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45602,15 +45484,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, + ACTIONS(884), 1, + anon_sym_LBRACE, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1500), 1, + STATE(436), 1, + sym_string_literal, + STATE(699), 1, + sym__expression, + STATE(1221), 1, + sym_initializer_list, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 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(549), 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, + [7592] = 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(1496), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(728), 1, + STATE(722), 1, sym__expression, - STATE(1277), 1, + STATE(1318), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45646,7 +45592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45657,7 +45603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7754] = 18, + [7674] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45668,13 +45614,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1502), 1, + ACTIONS(1498), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(725), 1, + STATE(708), 1, sym__expression, - STATE(1314), 1, + STATE(1278), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45710,7 +45656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45721,7 +45667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7836] = 18, + [7756] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45732,13 +45678,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1504), 1, + ACTIONS(1500), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(721), 1, + STATE(702), 1, sym__expression, - STATE(1321), 1, + STATE(1315), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45774,7 +45720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45785,35 +45731,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7918] = 18, + [7838] = 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(1154), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1156), 1, - anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(549), 1, - sym_initializer_list, - STATE(630), 1, + STATE(705), 1, sym__expression, - ACTIONS(1158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1160), 2, + STATE(1226), 1, + sym_initializer_list, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -45832,13 +45778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45849,7 +45795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8000] = 18, + [7920] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45858,16 +45804,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(1144), 1, sym_identifier, - STATE(429), 1, + ACTIONS(1502), 1, + anon_sym_RPAREN, + STATE(436), 1, sym_string_literal, - STATE(547), 1, + STATE(719), 1, sym__expression, - STATE(549), 1, - sym_initializer_list, + STATE(1332), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45902,7 +45848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45913,7 +45859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8082] = 18, + [8002] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45924,13 +45870,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1506), 1, + ACTIONS(1504), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(696), 1, + STATE(741), 1, sym__expression, - STATE(1320), 1, + STATE(1441), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45966,7 +45912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45977,7 +45923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8164] = 17, + [8084] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45988,11 +45934,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + ACTIONS(1506), 1, + anon_sym_RPAREN, + STATE(436), 1, sym_string_literal, - STATE(714), 1, + STATE(703), 1, sym__expression, - STATE(1397), 1, + STATE(1445), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46028,7 +45976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46039,7 +45987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8243] = 17, + [8166] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -46052,7 +46000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1508), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, STATE(640), 1, sym__expression, @@ -46065,7 +46013,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46084,13 +46032,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46101,35 +46049,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8322] = 17, + [8245] = 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, + ACTIONS(870), 1, sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, ACTIONS(1510), 1, - anon_sym_SEMI, - STATE(429), 1, + anon_sym_RBRACK, + STATE(436), 1, sym_string_literal, - STATE(779), 1, + STATE(640), 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(1166), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -46146,13 +46094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46163,7 +46111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8401] = 17, + [8324] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46174,12 +46122,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1512), 1, - anon_sym_RPAREN, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(688), 1, + STATE(717), 1, sym__expression, + STATE(1423), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46214,7 +46162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46225,7 +46173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8480] = 17, + [8403] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46236,11 +46184,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1514), 1, + ACTIONS(1512), 1, anon_sym_SEMI, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(750), 1, + STATE(765), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46276,7 +46224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46287,7 +46235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8559] = 17, + [8482] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -46298,9 +46246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1516), 1, + ACTIONS(1514), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, STATE(640), 1, sym__expression, @@ -46313,71 +46261,9 @@ static const uint16_t ts_small_parse_table[] = { 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, - [8638] = 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(1518), 1, - anon_sym_SEMI, - STATE(429), 1, - sym_string_literal, - STATE(763), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1166), 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, @@ -46394,13 +46280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46411,7 +46297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8717] = 17, + [8561] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -46422,9 +46308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1520), 1, + ACTIONS(1516), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, STATE(640), 1, sym__expression, @@ -46437,7 +46323,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46456,13 +46342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46473,7 +46359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8796] = 17, + [8640] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46484,12 +46370,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + ACTIONS(1518), 1, + anon_sym_RPAREN, + STATE(436), 1, sym_string_literal, - STATE(717), 1, + STATE(694), 1, sym__expression, - STATE(1422), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46524,7 +46410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46535,7 +46421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8875] = 17, + [8719] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -46546,9 +46432,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1522), 1, + ACTIONS(1520), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, STATE(640), 1, sym__expression, @@ -46561,7 +46447,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46580,13 +46466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46597,7 +46483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8954] = 17, + [8798] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46608,11 +46494,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1524), 1, + ACTIONS(1522), 1, anon_sym_SEMI, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(789), 1, + STATE(757), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46648,7 +46534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46659,7 +46545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9033] = 17, + [8877] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46670,11 +46556,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1524), 1, anon_sym_SEMI, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(790), 1, + STATE(754), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46710,7 +46596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46721,35 +46607,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9112] = 17, + [8956] = 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, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1528), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1526), 1, + anon_sym_RBRACK, + STATE(436), 1, sym_string_literal, - STATE(756), 1, + STATE(640), 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(1166), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -46766,13 +46652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46783,7 +46669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9191] = 17, + [9035] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46794,11 +46680,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1530), 1, + ACTIONS(1528), 1, anon_sym_SEMI, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(783), 1, + STATE(752), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46834,7 +46720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46845,35 +46731,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9270] = 17, + [9114] = 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, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1530), 1, + anon_sym_RBRACK, + STATE(436), 1, sym_string_literal, - STATE(748), 1, + STATE(640), 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(1166), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -46890,13 +46776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46907,7 +46793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9349] = 17, + [9193] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46918,11 +46804,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1534), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1532), 1, + anon_sym_RPAREN, + STATE(436), 1, sym_string_literal, - STATE(819), 1, + STATE(689), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46958,7 +46844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46969,35 +46855,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9428] = 17, + [9272] = 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(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1536), 1, - anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(640), 1, + STATE(695), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + STATE(1231), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 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, @@ -47014,13 +46900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47031,35 +46917,83 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9507] = 17, + [9351] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1536), 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(1534), 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, + [9402] = 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(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, ACTIONS(1538), 1, - anon_sym_RBRACK, - STATE(429), 1, + anon_sym_SEMI, + STATE(436), 1, sym_string_literal, - STATE(640), 1, + STATE(821), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 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, @@ -47076,13 +47010,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47093,7 +47027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9586] = 17, + [9481] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47106,9 +47040,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1540), 1, anon_sym_SEMI, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(764), 1, + STATE(803), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47144,7 +47078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47155,7 +47089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9665] = 17, + [9560] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47168,9 +47102,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1542), 1, anon_sym_SEMI, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(785), 1, + STATE(790), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47206,7 +47140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47217,35 +47151,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9744] = 17, + [9639] = 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(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, ACTIONS(1544), 1, - anon_sym_RBRACK, - STATE(429), 1, + anon_sym_SEMI, + STATE(436), 1, sym_string_literal, - STATE(640), 1, + STATE(778), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 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, @@ -47262,13 +47196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47279,55 +47213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [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, + [9718] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47338,11 +47224,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1550), 1, - anon_sym_RPAREN, - STATE(429), 1, + ACTIONS(1546), 1, + anon_sym_SEMI, + STATE(436), 1, sym_string_literal, - STATE(685), 1, + STATE(802), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47378,7 +47264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47389,7 +47275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9953] = 17, + [9797] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -47400,9 +47286,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1552), 1, + ACTIONS(1548), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, STATE(640), 1, sym__expression, @@ -47415,7 +47301,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -47434,13 +47320,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47451,7 +47337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10032] = 17, + [9876] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47462,12 +47348,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + ACTIONS(1550), 1, + anon_sym_SEMI, + STATE(436), 1, sym_string_literal, - STATE(683), 1, + STATE(747), 1, sym__expression, - STATE(1269), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -47502,7 +47388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47513,7 +47399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10111] = 17, + [9955] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47524,11 +47410,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - ACTIONS(1554), 1, + ACTIONS(1552), 1, anon_sym_SEMI, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(772), 1, + STATE(806), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47564,7 +47450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47575,7 +47461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10190] = 17, + [10034] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -47586,9 +47472,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1556), 1, + ACTIONS(1554), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(436), 1, sym_string_literal, STATE(640), 1, sym__expression, @@ -47601,7 +47487,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -47620,13 +47506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47637,35 +47523,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10269] = 17, + [10113] = 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(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1558), 1, - anon_sym_RBRACK, - STATE(429), 1, + ACTIONS(1556), 1, + anon_sym_SEMI, + STATE(436), 1, sym_string_literal, - STATE(640), 1, + STATE(813), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 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, @@ -47682,13 +47568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47699,7 +47585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10348] = 16, + [10192] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47710,10 +47596,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(519), 1, + STATE(704), 1, sym__expression, + STATE(1429), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -47748,7 +47636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47759,93 +47647,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10424] = 16, + [10271] = 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(429), 1, + ACTIONS(1558), 1, + anon_sym_RBRACK, + STATE(436), 1, sym_string_literal, - STATE(612), 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(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, - [10500] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1154), 1, - sym_identifier, - ACTIONS(1156), 1, - anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_sizeof, - STATE(429), 1, - sym_string_literal, - STATE(639), 1, - sym__expression, - ACTIONS(1158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1160), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(1166), 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, @@ -47862,13 +47692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47879,33 +47709,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10576] = 16, + [10350] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(888), 1, - anon_sym_sizeof, - ACTIONS(1560), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - STATE(429), 1, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(604), 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(1166), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -47922,13 +47752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47939,7 +47769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10652] = 16, + [10426] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47950,9 +47780,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(664), 1, + STATE(755), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47988,7 +47818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47999,31 +47829,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10728] = 16, + [10502] = 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(429), 1, + STATE(436), 1, sym_string_literal, - STATE(607), 1, + STATE(661), 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, @@ -48042,13 +47872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48059,31 +47889,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10804] = 16, + [10578] = 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(429), 1, + STATE(436), 1, sym_string_literal, - STATE(517), 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, @@ -48102,13 +47932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48119,7 +47949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10880] = 16, + [10654] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48130,9 +47960,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(665), 1, + STATE(532), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48168,7 +47998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48179,31 +48009,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10956] = 16, + [10730] = 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, + ACTIONS(1158), 1, sym_identifier, - STATE(429), 1, + ACTIONS(1160), 1, + anon_sym_LPAREN2, + ACTIONS(1170), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(656), 1, + STATE(763), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1164), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48222,13 +48052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48239,7 +48069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11032] = 16, + [10806] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -48250,9 +48080,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(640), 1, + STATE(632), 1, sym__expression, ACTIONS(1090), 2, anon_sym_DASH, @@ -48263,7 +48093,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -48282,13 +48112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48299,62 +48129,130 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11108] = 8, + [10882] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, - anon_sym_LBRACK, - STATE(573), 1, - sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(436), 1, + sym_string_literal, + STATE(639), 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(1572), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1566), 13, + ACTIONS(1166), 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(591), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [10958] = 16, + 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, + STATE(436), 1, + sym_string_literal, + STATE(633), 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(1166), 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(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(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(591), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [11034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 13, + ACTIONS(1562), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -48368,7 +48266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1574), 29, + ACTIONS(1560), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -48379,9 +48277,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, @@ -48398,19 +48296,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [11218] = 7, + [11084] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 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, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(436), 1, + sym_string_literal, + STATE(630), 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(1166), 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(591), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [11160] = 16, + 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, + STATE(436), 1, + sym_string_literal, + STATE(637), 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(1166), 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(591), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [11236] = 16, + 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, + STATE(436), 1, + sym_string_literal, + STATE(623), 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(1166), 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(591), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [11312] = 16, + 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, + STATE(436), 1, + sym_string_literal, + STATE(626), 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(1166), 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(591), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [11388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1566), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -48424,9 +48553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1578), 24, + ACTIONS(1564), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -48434,7 +48564,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, @@ -48449,20 +48581,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [11276] = 16, + anon_sym_DOT, + anon_sym_DASH_GT, + [11438] = 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, + ACTIONS(1568), 1, + anon_sym_LPAREN2, + STATE(436), 1, sym_string_literal, - STATE(608), 1, + STATE(653), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48498,7 +48632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48509,61 +48643,67 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11352] = 10, + [11514] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(19), 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, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + STATE(436), 1, + sym_string_literal, + STATE(794), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1586), 3, + ACTIONS(25), 2, 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(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(549), 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, + [11590] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48574,9 +48714,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(823), 1, + STATE(538), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48612,7 +48752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48623,953 +48763,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11492] = 11, + [11666] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1158), 1, + sym_identifier, + ACTIONS(1160), 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, + ACTIONS(1170), 1, + anon_sym_sizeof, + STATE(436), 1, + sym_string_literal, + STATE(822), 1, + sym__expression, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1590), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1586), 3, + ACTIONS(1164), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1166), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1588), 6, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - 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(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(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(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, - 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(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, - 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(746), 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, - [12134] = 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, - [12184] = 9, - 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(1586), 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, - 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, - [12246] = 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(660), 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, - [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(1144), 1, - sym_identifier, - STATE(429), 1, - sym_string_literal, - STATE(778), 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, - [12398] = 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(658), 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, - [12474] = 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(655), 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, - [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, - 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(792), 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(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49588,13 +48806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49605,33 +48823,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12708] = 16, + [11742] = 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(429), 1, + STATE(436), 1, sym_string_literal, - STATE(519), 1, + STATE(627), 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(1166), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -49648,13 +48866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49665,31 +48883,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12784] = 16, + [11818] = 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(1154), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1156), 1, - anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(804), 1, + STATE(654), 1, sym__expression, - ACTIONS(1158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49708,13 +48926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49725,31 +48943,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12860] = 16, + [11894] = 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(1154), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1156), 1, - anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(632), 1, + STATE(804), 1, sym__expression, - ACTIONS(1158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49768,13 +48986,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49785,33 +49003,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12936] = 16, + [11970] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(803), 1, + STATE(628), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -49828,13 +49046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49845,93 +49063,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13012] = 16, + [12046] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(624), 1, + STATE(629), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(1096), 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(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, - [13088] = 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(654), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1166), 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, @@ -49948,13 +49106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49965,82 +49123,69 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13164] = 16, + [12122] = 3, 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(757), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1572), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1570), 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, - 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, - [13240] = 8, + anon_sym_DOT, + anon_sym_DASH_GT, + [12172] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1618), 13, + ACTIONS(1578), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -50054,7 +49199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1616), 22, + ACTIONS(1574), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -50077,7 +49222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [13300] = 16, + [12232] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -50088,9 +49233,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(821), 1, + STATE(655), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -50126,7 +49271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50137,39 +49282,60 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13376] = 3, + [12308] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1622), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1592), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1594), 1, + anon_sym_AMP_AMP, + ACTIONS(1596), 1, anon_sym_PIPE, + ACTIONS(1598), 1, anon_sym_CARET, + ACTIONS(1600), 1, anon_sym_AMP, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1612), 1, + anon_sym_QMARK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1602), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1604), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1606), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1608), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1620), 29, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1586), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -50180,35 +49346,31 @@ 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, - [13426] = 16, + [12392] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(762), 1, + STATE(816), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50227,13 +49389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50244,31 +49406,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13502] = 16, + [12468] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1166), 1, - anon_sym_sizeof, - ACTIONS(1624), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - STATE(429), 1, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(781), 1, + STATE(575), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50287,13 +49449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50304,33 +49466,179 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13578] = 16, + [12544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + 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, - 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, + [12594] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1620), 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(1618), 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, + [12654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 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(1622), 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, + [12704] = 16, + ACTIONS(3), 1, + sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(429), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(657), 1, + STATE(631), 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(1166), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -50347,13 +49655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50364,33 +49672,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13654] = 16, + [12780] = 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, + ACTIONS(870), 1, sym_identifier, - STATE(429), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(800), 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(1166), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -50407,13 +49715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50424,31 +49732,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13730] = 16, + [12856] = 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, + ACTIONS(1158), 1, sym_identifier, - STATE(429), 1, - sym_string_literal, - STATE(774), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1160), 1, + anon_sym_LPAREN2, + ACTIONS(1170), 1, + anon_sym_sizeof, + STATE(436), 1, + sym_string_literal, + STATE(785), 1, + sym__expression, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1164), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50467,13 +49775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50484,33 +49792,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13806] = 16, + [12932] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(632), 1, + STATE(534), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 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, @@ -50527,13 +49835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50544,31 +49852,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13882] = 16, + [13008] = 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, + ACTIONS(870), 1, sym_identifier, - STATE(429), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(659), 1, + STATE(576), 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, @@ -50587,13 +49895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50604,31 +49912,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13958] = 16, + [13084] = 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, + ACTIONS(870), 1, sym_identifier, - STATE(429), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(761), 1, + STATE(579), 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, @@ -50647,13 +49955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50664,33 +49972,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14034] = 16, + [13160] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1626), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - STATE(429), 1, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(627), 1, + STATE(581), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 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, @@ -50707,13 +50015,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50724,80 +50032,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1630), 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(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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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, - [14160] = 16, + [13236] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(636), 1, + STATE(585), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 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, @@ -50814,13 +50075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50831,33 +50092,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14236] = 16, + [13312] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(624), 1, + STATE(639), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1168), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -50874,13 +50135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50891,24 +50152,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14312] = 9, + [13388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, - anon_sym_LPAREN2, - ACTIONS(1250), 1, + ACTIONS(1248), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1255), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1263), 2, + 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, - ACTIONS(1253), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1259), 10, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -50919,9 +50195,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 11, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13438] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1628), 13, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -50931,23 +50227,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1242), 12, + anon_sym_EQ, + ACTIONS(1626), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14374] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [13498] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1634), 13, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1632), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -50961,10 +50277,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1632), 29, + ACTIONS(1630), 24, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -50973,8 +50288,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, @@ -50989,33 +50302,31 @@ 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, - [14424] = 16, + [13556] = 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, + ACTIONS(870), 1, sym_identifier, - STATE(429), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(436), 1, sym_string_literal, - STATE(661), 1, + STATE(587), 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, @@ -51034,13 +50345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51051,18 +50362,18 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14500] = 16, + [13632] = 16, 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, - STATE(429), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + STATE(436), 1, sym_string_literal, STATE(638), 1, sym__expression, @@ -51075,7 +50386,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -51094,13 +50405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51111,80 +50422,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [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, + [13708] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(829), 1, + STATE(636), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51201,13 +50465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51218,31 +50482,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14702] = 16, + [13784] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(826), 1, + STATE(632), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51261,13 +50525,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51278,54 +50542,67 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14778] = 3, + [13860] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 13, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + STATE(436), 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(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, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14828] = 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(549), 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, + [13936] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51336,9 +50613,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(713), 1, + STATE(658), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51374,7 +50651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51385,33 +50662,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14904] = 16, + [14012] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + ACTIONS(1636), 1, + anon_sym_LPAREN2, + STATE(436), 1, sym_string_literal, - STATE(639), 1, + STATE(777), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1168), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -51428,13 +50705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51445,39 +50722,24 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14980] = 3, + [14088] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1244), 1, + anon_sym_LPAREN2, + ACTIONS(1250), 1, 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(1255), 1, anon_sym_EQ, - ACTIONS(1242), 29, - anon_sym_COMMA, + ACTIONS(1261), 2, 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, + 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, @@ -51488,17 +50750,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, - [15030] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1646), 13, + ACTIONS(1248), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -51508,64 +50762,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1644), 29, + ACTIONS(1242), 12, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [15080] = 16, + [14150] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(631), 1, + STATE(588), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 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, @@ -51582,13 +50818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51599,7 +50835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15156] = 16, + [14226] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -51610,9 +50846,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(521), 1, + STATE(589), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -51642,13 +50878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51659,31 +50895,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15232] = 16, + [14302] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(835), 1, + STATE(532), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51702,13 +50938,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51719,33 +50955,88 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15308] = 16, + [14378] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1608), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1640), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1638), 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, + [14444] = 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(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(635), 1, + STATE(664), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 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, @@ -51762,13 +51053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51779,10 +51070,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15384] = 3, + [14520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1650), 13, + ACTIONS(1644), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -51796,7 +51087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1648), 29, + ACTIONS(1642), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -51826,7 +51117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [15434] = 16, + [14570] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -51837,9 +51128,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(523), 1, + STATE(592), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -51869,13 +51160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51886,33 +51177,80 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15510] = 16, + [14646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 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(1646), 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, + [14696] = 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(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(628), 1, + STATE(657), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 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, @@ -51929,13 +51267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51946,31 +51284,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15586] = 16, + [14772] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(524), 1, + STATE(812), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51989,13 +51327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52006,33 +51344,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15662] = 16, + [14848] = 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(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(625), 1, + STATE(725), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 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, @@ -52049,13 +51387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52066,78 +51404,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1654), 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(1652), 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, - [15788] = 16, + [14924] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(525), 1, + STATE(810), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52156,13 +51447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52173,31 +51464,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15864] = 16, + [15000] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(526), 1, + STATE(809), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52216,13 +51507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52233,7 +51524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15940] = 16, + [15076] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -52244,9 +51535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(527), 1, + STATE(551), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -52276,13 +51567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52293,31 +51584,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16016] = 16, + [15152] = 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(1154), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1156), 1, - anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(795), 1, + STATE(663), 1, sym__expression, - ACTIONS(1158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52336,13 +51627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52353,93 +51644,142 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16092] = 16, + [15228] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(874), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(429), 1, - sym_string_literal, - STATE(529), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1578), 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(1574), 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, + [15292] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 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, - [16168] = 16, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1608), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1578), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1574), 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, + [15358] = 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(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(623), 1, + STATE(697), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 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, @@ -52456,13 +51796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52473,7 +51813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16244] = 16, + [15434] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -52484,9 +51824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(530), 1, + STATE(550), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -52516,13 +51856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52533,31 +51873,88 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16320] = 16, + [15510] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1604), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1606), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1608), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1578), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1574), 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, + [15580] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(608), 1, + STATE(808), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52576,13 +51973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52593,7 +51990,65 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16396] = 16, + [15656] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1602), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1604), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1606), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1608), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1578), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1574), 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, + [15728] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52604,9 +52059,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(653), 1, + STATE(656), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52642,7 +52097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52653,31 +52108,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16472] = 16, + [15804] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(533), 1, + STATE(805), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52696,13 +52151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52713,31 +52168,137 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16548] = 16, + [15880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1652), 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(1650), 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, + [15930] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1600), 1, + anon_sym_AMP, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1602), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1604), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1606), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1608), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1578), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1574), 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, + [16004] = 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(1154), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1156), 1, - anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(824), 1, + STATE(551), 1, sym__expression, - ACTIONS(1158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52756,13 +52317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52773,91 +52334,214 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16624] = 16, + [16080] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1154), 1, - sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_sizeof, - STATE(429), 1, - sym_string_literal, - STATE(798), 1, - sym__expression, - ACTIONS(1158), 2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_CARET, + ACTIONS(1600), 1, + anon_sym_AMP, + STATE(600), 1, + sym_argument_list, + ACTIONS(1578), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(1602), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1604), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1606), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1608), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1574), 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, + [16156] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1578), 1, + anon_sym_EQ, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1596), 1, + anon_sym_PIPE, + ACTIONS(1598), 1, + anon_sym_CARET, + ACTIONS(1600), 1, + anon_sym_AMP, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1602), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1604), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1606), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1608), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1590), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1574), 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, + [16234] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1578), 1, + anon_sym_EQ, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1594), 1, + anon_sym_AMP_AMP, + ACTIONS(1596), 1, + anon_sym_PIPE, + ACTIONS(1598), 1, + anon_sym_CARET, + ACTIONS(1600), 1, anon_sym_AMP, - ACTIONS(1164), 2, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 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(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, - [16700] = 16, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1588), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1602), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1604), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1606), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1608), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1574), 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, + [16314] = 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(1154), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1156), 1, - anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(810), 1, + STATE(762), 1, sym__expression, - ACTIONS(1158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52876,13 +52560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52893,31 +52577,131 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16776] = 16, + [16390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1154), 1, - sym_identifier, - ACTIONS(1156), 1, + 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(1166), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_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, + [16440] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1590), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1578), 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(1574), 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, + [16502] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - STATE(429), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + STATE(436), 1, sym_string_literal, - STATE(769), 1, + STATE(827), 1, sym__expression, - ACTIONS(1158), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52936,13 +52720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(614), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52953,7 +52737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16852] = 16, + [16578] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52964,9 +52748,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(723), 1, + STATE(789), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53002,7 +52786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53013,31 +52797,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16928] = 16, + [16654] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(807), 1, + STATE(636), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -53056,13 +52840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53073,10 +52857,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17004] = 3, + [16730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1658), 13, + ACTIONS(1656), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53090,7 +52874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1656), 29, + ACTIONS(1654), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -53120,33 +52904,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17054] = 16, + [16780] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(637), 1, + STATE(795), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1168), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -53163,13 +52947,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53180,31 +52964,91 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17130] = 16, + [16856] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1154), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1156), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(806), 1, + STATE(538), 1, sym__expression, - ACTIONS(1158), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1160), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1162), 2, + 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(591), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [16932] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(888), 1, + anon_sym_sizeof, + ACTIONS(1658), 1, + anon_sym_LPAREN2, + STATE(436), 1, + sym_string_literal, + STATE(563), 1, + sym__expression, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1164), 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, @@ -53223,13 +53067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(644), 5, + STATE(591), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53240,7 +53084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17206] = 3, + [17008] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1662), 13, @@ -53287,47 +53131,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17256] = 11, + [17058] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + STATE(436), 1, + sym_string_literal, + STATE(793), 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(549), 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, + [17134] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, anon_sym_LBRACK, - STATE(573), 1, + ACTIONS(1592), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1594), 1, + anon_sym_AMP_AMP, + ACTIONS(1596), 1, + anon_sym_PIPE, + ACTIONS(1598), 1, + anon_sym_CARET, + ACTIONS(1600), 1, + anon_sym_AMP, + ACTIONS(1666), 1, + anon_sym_EQ, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1584), 2, + ACTIONS(1588), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1590), 2, + ACTIONS(1602), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1604), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1606), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1608), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1586), 3, + ACTIONS(1590), 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, + ACTIONS(1664), 16, 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, @@ -53342,20 +53254,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17322] = 16, + [17216] = 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, - ACTIONS(1668), 1, + STATE(436), 1, + sym_string_literal, + STATE(807), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(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(549), 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, + [17292] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, anon_sym_LPAREN2, - STATE(429), 1, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1144), 1, + sym_identifier, + STATE(436), 1, sym_string_literal, - STATE(662), 1, + STATE(660), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53391,7 +53363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53402,33 +53374,80 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17398] = 16, + [17368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 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(1668), 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, + [17418] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1158), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1170), 1, anon_sym_sizeof, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(622), 1, + STATE(759), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1162), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1164), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1162), 2, + ACTIONS(1166), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1168), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -53445,13 +53464,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(532), 5, + STATE(643), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53462,22 +53481,22 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17474] = 8, + [17494] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1672), 13, + ACTIONS(1674), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53491,7 +53510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1670), 22, + ACTIONS(1672), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -53514,22 +53533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17534] = 8, + [17554] = 3, 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, + ACTIONS(1678), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53543,9 +53550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1582), 22, + ACTIONS(1676), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53554,6 +53562,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, @@ -53566,70 +53576,14 @@ static const uint16_t ts_small_parse_table[] = { 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(870), 1, - sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(429), 1, - sym_string_literal, - STATE(634), 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, - [17670] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + [17604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1676), 13, + ACTIONS(1682), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53643,7 +53597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1674), 29, + ACTIONS(1680), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -53673,7 +53627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17720] = 16, + [17654] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53684,9 +53638,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1144), 1, sym_identifier, - STATE(429), 1, + STATE(436), 1, sym_string_literal, - STATE(607), 1, + STATE(825), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53722,7 +53676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 10, + STATE(549), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53733,71 +53687,127 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17796] = 20, + [17730] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1158), 1, + sym_identifier, + ACTIONS(1160), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1170), 1, + anon_sym_sizeof, + STATE(436), 1, + sym_string_literal, + STATE(761), 1, + sym__expression, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1164), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1166), 2, + anon_sym_STAR, 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(1682), 1, - anon_sym_QMARK, - STATE(573), 1, - sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1168), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1584), 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(643), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [17806] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1158), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_LPAREN2, + ACTIONS(1170), 1, + anon_sym_sizeof, + STATE(436), 1, + sym_string_literal, + STATE(823), 1, + sym__expression, + ACTIONS(1162), 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, + ACTIONS(1164), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1166), 2, 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [17880] = 5, + anon_sym_AMP, + ACTIONS(1168), 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(643), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 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, + [17882] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1688), 1, @@ -53845,7 +53855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [17933] = 5, + [17935] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1255), 1, @@ -53893,7 +53903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17986] = 20, + [17988] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -53916,13 +53926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, ACTIONS(1198), 1, sym_identifier, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(941), 1, + STATE(935), 1, sym__declaration_specifiers, - STATE(1178), 1, + STATE(1173), 2, + sym_variadic_parameter, sym_parameter_declaration, ACTIONS(45), 4, anon_sym_const, @@ -53940,7 +53951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -53954,7 +53965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [18067] = 6, + [18070] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1255), 1, @@ -54001,7 +54012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18120] = 3, + [18123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1150), 18, @@ -54045,12 +54056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18167] = 6, + [18170] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1257), 1, + ACTIONS(1268), 1, anon_sym_COLON, ACTIONS(1259), 10, anon_sym_STAR_EQ, @@ -54092,12 +54103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18220] = 6, + [18223] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1261), 1, + ACTIONS(1257), 1, anon_sym_COLON, ACTIONS(1259), 10, anon_sym_STAR_EQ, @@ -54139,56 +54150,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18273] = 3, + [18276] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 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(1170), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + 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, - 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, - [18320] = 6, + ACTIONS(1186), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1198), 1, + sym_identifier, + STATE(696), 1, + sym__type_specifier, + STATE(775), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(935), 1, + sym__declaration_specifiers, + STATE(1229), 2, + sym_variadic_parameter, + 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(881), 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, + [18355] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1268), 1, + ACTIONS(1264), 1, anon_sym_COLON, ACTIONS(1259), 10, anon_sym_STAR_EQ, @@ -54230,101 +54257,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18373] = 18, + [18408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, - anon_sym_EQ, - ACTIONS(1691), 1, + ACTIONS(1154), 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(1156), 21, 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_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - STATE(573), 1, - sym_argument_list, - ACTIONS(1570), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, 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(1582), 13, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [18449] = 13, + 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, + [18455] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1707), 2, + ACTIONS(1697), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1709), 2, + ACTIONS(1699), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1711), 2, + ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1588), 4, + ACTIONS(1578), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(1582), 16, + ACTIONS(1574), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54341,93 +54354,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18515] = 8, + [18521] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, + ACTIONS(1666), 1, + anon_sym_EQ, 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(1672), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1705), 1, + anon_sym_AMP_AMP, + ACTIONS(1707), 1, anon_sym_PIPE, + ACTIONS(1709), 1, anon_sym_CARET, + ACTIONS(1711), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1670), 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, - [18571] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, - anon_sym_LPAREN2, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1711), 2, + ACTIONS(1697), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1699), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1713), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1588), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(1582), 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, + ACTIONS(1664), 12, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -54440,10 +54413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18633] = 3, + [18599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 18, + ACTIONS(1536), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -54462,7 +54435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1546), 20, + ACTIONS(1534), 20, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -54483,45 +54456,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18679] = 11, + [18645] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1711), 2, + ACTIONS(1697), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1699), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1713), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1666), 6, + ACTIONS(1578), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(1664), 18, + ACTIONS(1574), 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, @@ -54534,44 +54510,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18741] = 10, + [18713] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(573), 1, + ACTIONS(1711), 1, + anon_sym_AMP, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1695), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1588), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1697), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1699), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1713), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1578), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(1582), 18, + ACTIONS(1695), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1574), 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, @@ -54584,101 +54565,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18801] = 19, + [18783] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1614), 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, + ACTIONS(1709), 1, anon_sym_CARET, - ACTIONS(1703), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1713), 1, - anon_sym_PIPE_PIPE, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1578), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 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, + ACTIONS(1697), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1709), 2, + ACTIONS(1699), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1711), 2, + ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1713), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, 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(1618), 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(1616), 18, + ACTIONS(1574), 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, @@ -54691,56 +54621,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18935] = 20, + [18855] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1680), 1, + ACTIONS(1578), 1, anon_sym_EQ, + ACTIONS(1580), 1, + anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1697), 1, - anon_sym_AMP_AMP, - ACTIONS(1699), 1, + ACTIONS(1707), 1, anon_sym_PIPE, - ACTIONS(1701), 1, + ACTIONS(1709), 1, anon_sym_CARET, - ACTIONS(1703), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1713), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1715), 1, - anon_sym_QMARK, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 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, + ACTIONS(1697), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1709), 2, + ACTIONS(1699), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1711), 2, + ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1713), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 11, + ACTIONS(1574), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54751,27 +54678,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19015] = 8, + [18929] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1588), 13, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1578), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -54780,7 +54709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1582), 18, + ACTIONS(1574), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54799,108 +54728,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19071] = 19, - 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(1717), 1, - anon_sym_DOT_DOT_DOT, - STATE(705), 1, - sym__type_specifier, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(941), 1, - sym__declaration_specifiers, - STATE(1215), 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, - [19149] = 15, + [18989] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1578), 1, + anon_sym_EQ, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1703), 1, + ACTIONS(1705), 1, + anon_sym_AMP_AMP, + ACTIONS(1707), 1, + anon_sym_PIPE, + ACTIONS(1709), 1, + anon_sym_CARET, + ACTIONS(1711), 1, anon_sym_AMP, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 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, + ACTIONS(1697), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1709), 2, + ACTIONS(1699), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1711), 2, + ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1588), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, + ACTIONS(1713), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1582), 14, + ACTIONS(1574), 13, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -54913,28 +54786,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19219] = 9, + [19065] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1695), 3, + ACTIONS(1620), 13, + anon_sym_DASH, + anon_sym_PLUS, 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, @@ -54943,7 +54815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1582), 18, + ACTIONS(1618), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54962,53 +54834,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19277] = 17, + [19121] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1610), 1, anon_sym_EQ, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1699), 1, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1705), 1, + anon_sym_AMP_AMP, + ACTIONS(1707), 1, anon_sym_PIPE, - ACTIONS(1701), 1, + ACTIONS(1709), 1, anon_sym_CARET, - ACTIONS(1703), 1, + ACTIONS(1711), 1, anon_sym_AMP, - STATE(573), 1, + ACTIONS(1715), 1, + anon_sym_QMARK, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 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, + ACTIONS(1697), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1709), 2, + ACTIONS(1699), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1711), 2, + ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1713), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1582), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1586), 11, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -55019,48 +54894,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19351] = 14, + [19201] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1674), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1705), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1709), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1711), 2, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1672), 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, + [19257] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1588), 4, + ACTIONS(1578), 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(1582), 14, + ACTIONS(1574), 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, @@ -55073,50 +54991,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19419] = 16, + [19315] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1701), 1, - anon_sym_CARET, - ACTIONS(1703), 1, - anon_sym_AMP, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1693), 2, + ACTIONS(1578), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1705), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1707), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1709), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1574), 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, - ACTIONS(1711), 2, + 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, + [19371] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1693), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1582), 14, + ACTIONS(1578), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1574), 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, @@ -55129,33 +55090,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19491] = 7, + [19433] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1572), 2, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1580), 13, + ACTIONS(1693), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1701), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1640), 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(1578), 20, + ACTIONS(1638), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -55174,24 +55141,19 @@ 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, - [19545] = 8, + [19495] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1566), 13, + ACTIONS(1632), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55205,7 +55167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1562), 18, + ACTIONS(1630), 20, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -55224,10 +55186,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19601] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [19549] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1630), 13, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1628), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55241,15 +55217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1628), 24, - anon_sym_LPAREN2, + ACTIONS(1626), 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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -55262,14 +55236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19646] = 3, + [19605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 13, + ACTIONS(1648), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55283,7 +55253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1640), 24, + ACTIONS(1646), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -55308,10 +55278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19691] = 3, + [19650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 13, + ACTIONS(1566), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55325,7 +55295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1574), 24, + ACTIONS(1564), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -55350,12 +55320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19736] = 5, + [19695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 1, + ACTIONS(1717), 1, anon_sym_EQ, - ACTIONS(1721), 10, + ACTIONS(1719), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -55394,7 +55364,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19785] = 17, + [19744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1572), 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(1570), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19789] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55413,11 +55425,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1024), 1, + STATE(1045), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55435,7 +55447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -55449,7 +55461,54 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [19857] = 17, + [19861] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1728), 1, + anon_sym___attribute__, + ACTIONS(1731), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1734), 1, + anon_sym___declspec, + ACTIONS(1737), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1725), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(1723), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(646), 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(1721), 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, + [19917] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55468,11 +55527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1034), 1, + STATE(1020), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55490,7 +55549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -55504,54 +55563,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_ms_declspec_modifier, - 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, + [19989] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55570,11 +55582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1040), 1, + STATE(1030), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55592,7 +55604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -55606,7 +55618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20057] = 17, + [20061] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55625,11 +55637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - STATE(705), 1, + STATE(696), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1028), 1, + STATE(1032), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55647,7 +55659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -55661,7 +55673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20129] = 16, + [20133] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55680,9 +55692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1198), 1, sym_identifier, - STATE(739), 1, + STATE(716), 1, sym__type_specifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(45), 4, anon_sym_const, @@ -55700,13 +55712,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(647), 7, + STATE(646), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -55714,7 +55726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20198] = 19, + [20202] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(1190), 1, @@ -55723,33 +55735,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(1750), 1, + ACTIONS(1748), 1, anon_sym_LBRACK, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1038), 1, + STATE(1034), 1, sym__declarator, - STATE(1118), 1, + STATE(1115), 1, sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - ACTIONS(1744), 2, + ACTIONS(1742), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(836), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(838), 2, + STATE(843), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -55758,29 +55770,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [20272] = 5, + [20276] = 5, ACTIONS(3), 1, sym_comment, STATE(652), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1756), 4, + ACTIONS(1754), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1752), 7, + ACTIONS(1750), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -55788,7 +55800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1754), 19, + ACTIONS(1752), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -55808,14 +55820,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [20316] = 19, + [20320] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 1, + anon_sym_SLASH, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1640), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1638), 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, + [20377] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -55827,20 +55884,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -55850,45 +55910,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1610), 6, + ACTIONS(1664), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20387] = 11, + [20448] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1588), 4, + ACTIONS(1578), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1582), 15, + ACTIONS(1574), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -55904,38 +55961,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20442] = 12, + [20503] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1781), 2, + ACTIONS(1763), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1588), 4, + ACTIONS(1578), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1582), 13, + ACTIONS(1574), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -55949,182 +56006,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20499] = 18, + [20560] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, + STATE(600), 1, + sym_argument_list, + ACTIONS(1578), 2, anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, anon_sym_AMP, - STATE(573), 1, - sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, 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), 7, + ACTIONS(1574), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20568] = 10, + [20621] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1578), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1588), 6, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1582), 15, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1574), 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_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20621] = 14, + [20684] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1578), 1, + anon_sym_PIPE, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(573), 1, + ACTIONS(1773), 1, + anon_sym_AMP, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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), 11, + ACTIONS(1574), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20682] = 20, + [20749] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1578), 1, + anon_sym_PIPE, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 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, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56134,41 +56191,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1678), 5, + ACTIONS(1574), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [20755] = 15, + anon_sym_QMARK, + [20816] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(573), 1, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56178,46 +56241,49 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1574), 8, 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, - [20818] = 16, + [20883] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, - anon_sym_PIPE, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, + 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, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56227,51 +56293,42 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1574), 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, - [20883] = 12, + [20952] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 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(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1666), 4, + ACTIONS(1578), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1664), 13, + ACTIONS(1574), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -56281,75 +56338,50 @@ 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, - [20940] = 3, + [21005] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1576), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(1785), 22, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(1580), 1, 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, - sym_identifier, - [20979] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN2, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, - anon_sym_PIPE, - ACTIONS(1763), 1, + ACTIONS(1761), 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, - STATE(573), 1, + ACTIONS(1781), 1, + anon_sym_QMARK, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56359,72 +56391,52 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1586), 5, 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, + [21078] = 3, 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, + ACTIONS(1785), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - [21113] = 3, + ACTIONS(1783), 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, + 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, + [21117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 8, + ACTIONS(1789), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56433,7 +56445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1789), 22, + ACTIONS(1787), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -56456,10 +56468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21151] = 3, + [21155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 11, + ACTIONS(1791), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_const, @@ -56471,7 +56483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1795), 19, + ACTIONS(1793), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -56491,12 +56503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [21189] = 3, + [21193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1797), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1797), 28, + ACTIONS(1795), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56525,12 +56537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21226] = 3, + [21230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 1, + ACTIONS(1801), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1801), 28, + ACTIONS(1799), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56559,12 +56571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21263] = 3, + [21267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, + ACTIONS(1046), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 28, + ACTIONS(1044), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56593,12 +56605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21300] = 3, + [21304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1082), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 28, + ACTIONS(1080), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56627,12 +56639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21337] = 3, + [21341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1813), 28, + ACTIONS(1072), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56661,12 +56673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21374] = 3, + [21378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1106), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1817), 28, + ACTIONS(1104), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56695,65 +56707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21411] = 22, + [21415] = 3, 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(1821), 1, - anon_sym_COMMA, - ACTIONS(1823), 1, - anon_sym_RBRACE, - STATE(573), 1, - sym_argument_list, - STATE(1206), 1, - aux_sym_initializer_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, - [21486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, + ACTIONS(1110), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1825), 28, + ACTIONS(1108), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56782,23 +56741,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21523] = 3, + [21452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1829), 22, + ACTIONS(1124), 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, @@ -56816,10 +56775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21560] = 3, + [21489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 7, + ACTIONS(1793), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56827,7 +56786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1793), 22, + ACTIONS(1791), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -56850,12 +56809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21597] = 3, + [21526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(1805), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 28, + ACTIONS(1803), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56884,12 +56843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21634] = 3, + [21563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(1809), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1124), 28, + ACTIONS(1807), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56918,23 +56877,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21671] = 3, + [21600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1813), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1168), 22, + ACTIONS(1811), 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, @@ -56952,12 +56911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21708] = 3, + [21637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, + ACTIONS(1817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1837), 28, + ACTIONS(1815), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56986,10 +56945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21745] = 3, + [21674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 7, + ACTIONS(1156), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56997,7 +56956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1150), 22, + ACTIONS(1154), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -57020,64 +56979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21782] = 21, + [21711] = 3, 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(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, + ACTIONS(1821), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1845), 28, + ACTIONS(1819), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57106,65 +57013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21892] = 22, + [21748] = 3, 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(1855), 1, + ACTIONS(1825), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1853), 28, + ACTIONS(1823), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57193,23 +57047,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22004] = 3, + [21785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1152), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1857), 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, @@ -57227,65 +57081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22041] = 22, + [21822] = 3, 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(1861), 1, - anon_sym_RPAREN, - STATE(573), 1, - sym_argument_list, - STATE(1163), 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, - [22116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1074), 1, + ACTIONS(1829), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1072), 28, + ACTIONS(1827), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57314,12 +57115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22153] = 3, + [21859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 1, + ACTIONS(1833), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1044), 28, + ACTIONS(1831), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57348,23 +57149,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22190] = 3, + [21896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1837), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1863), 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(1835), 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, @@ -57382,12 +57183,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22227] = 3, + [21933] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + ACTIONS(1839), 1, + anon_sym_COMMA, + ACTIONS(1841), 1, + anon_sym_RBRACE, + STATE(600), 1, + sym_argument_list, + STATE(1213), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [22008] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + ACTIONS(1843), 1, + anon_sym_COMMA, + ACTIONS(1845), 1, + anon_sym_RPAREN, + STATE(600), 1, + sym_argument_list, + STATE(1206), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [22083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1849), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1867), 28, + ACTIONS(1847), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57416,12 +57323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22264] = 3, + [22120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 1, + ACTIONS(1853), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1108), 28, + ACTIONS(1851), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57450,12 +57357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22301] = 3, + [22157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(1857), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 28, + ACTIONS(1855), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57484,12 +57391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22338] = 3, + [22194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 1, + ACTIONS(1861), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1080), 28, + ACTIONS(1859), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57518,14 +57425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22375] = 21, + [22231] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -57537,26 +57444,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1843), 1, anon_sym_COMMA, - ACTIONS(1871), 1, + ACTIONS(1863), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + STATE(1155), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57566,17 +57478,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22447] = 21, + [22306] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -57588,26 +57497,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1873), 1, - anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57617,17 +57527,106 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, + ACTIONS(1867), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [22379] = 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(1869), 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(1871), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(723), 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, + [22427] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [22519] = 21, + 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(1873), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [22497] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -57639,26 +57638,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1875), 1, anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57668,17 +57670,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22591] = 21, + [22569] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -57690,26 +57689,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, - anon_sym_COMMA, - ACTIONS(1877), 1, - anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57719,17 +57717,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22663] = 21, + ACTIONS(1877), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [22639] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -57741,26 +57739,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1879), 1, anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57770,17 +57771,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22735] = 21, + [22711] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -57792,26 +57790,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1881), 1, - anon_sym_RPAREN, - STATE(573), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57821,17 +57822,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22807] = 21, + [22783] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -57843,26 +57841,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1883), 1, - anon_sym_SEMI, - STATE(573), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57872,17 +57873,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22879] = 21, + [22855] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -57894,26 +57892,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1885), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57923,128 +57924,115 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22951] = 3, + [22927] = 21, 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, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, 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, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + ACTIONS(1865), 1, anon_sym_COMMA, + ACTIONS(1887), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, 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, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [22999] = 20, 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, + ACTIONS(1576), 1, anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, 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, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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(1889), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [23069] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58056,26 +58044,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, - anon_sym_COMMA, - ACTIONS(1895), 1, - anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58085,17 +58072,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23155] = 21, + ACTIONS(1891), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [23139] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58107,26 +58094,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1897), 1, - anon_sym_RPAREN, - STATE(573), 1, + ACTIONS(1893), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58136,17 +58126,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23227] = 21, + [23211] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58158,26 +58145,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1899), 1, - anon_sym_SEMI, - STATE(573), 1, + ACTIONS(1895), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58187,17 +58177,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23299] = 21, + [23283] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58209,26 +58196,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1901), 1, + ACTIONS(1897), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58238,17 +58228,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23371] = 21, + [23355] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58260,26 +58247,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1903), 1, + ACTIONS(1899), 1, anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58289,50 +58279,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [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, + [23427] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58344,22 +58298,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - STATE(573), 1, + ACTIONS(1865), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58369,20 +58330,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1905), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [23549] = 21, + [23499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1446), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1448), 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, + [23535] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58394,26 +58382,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1907), 1, + ACTIONS(1903), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58423,17 +58414,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23621] = 21, + [23607] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58445,26 +58433,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1909), 1, + ACTIONS(1905), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58474,17 +58465,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23693] = 21, + [23679] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58496,26 +58484,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1911), 1, + ACTIONS(1907), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58525,17 +58516,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23765] = 21, + [23751] = 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(1909), 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(1911), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(732), 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, + [23799] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58547,26 +58574,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1913), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58576,17 +58606,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23837] = 21, + [23871] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58598,26 +58625,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1915), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58627,17 +58657,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23909] = 21, + [23943] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58649,26 +58676,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1917), 1, - anon_sym_SEMI, - STATE(573), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58678,17 +58708,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23981] = 21, + [24015] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58700,26 +58727,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1919), 1, - anon_sym_RPAREN, - STATE(573), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58729,17 +58759,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24053] = 21, + [24087] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58751,26 +58778,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1921), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58780,17 +58810,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24125] = 21, + [24159] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58802,26 +58829,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1923), 1, - anon_sym_SEMI, - STATE(573), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58831,17 +58861,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24197] = 20, + [24231] = 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(1925), 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(1927), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(646), 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, + [24279] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58853,22 +58919,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - STATE(573), 1, + ACTIONS(1865), 1, + anon_sym_COMMA, + ACTIONS(1929), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58878,20 +58951,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1925), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [24267] = 21, + [24351] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58903,26 +58970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, - anon_sym_COMMA, - ACTIONS(1927), 1, - anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58932,17 +58998,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24339] = 21, + ACTIONS(1931), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [24421] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -58954,26 +59020,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1929), 1, + ACTIONS(1933), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58983,17 +59052,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24411] = 21, + [24493] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59005,26 +59071,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1931), 1, - anon_sym_SEMI, - STATE(573), 1, + ACTIONS(1935), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59034,17 +59103,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24483] = 21, + [24565] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59056,26 +59122,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1933), 1, + ACTIONS(1937), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59085,17 +59154,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24555] = 21, + [24637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1436), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1438), 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, + [24673] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59107,26 +59206,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1935), 1, - anon_sym_RPAREN, - STATE(573), 1, + ACTIONS(1939), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59136,17 +59238,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24627] = 21, + [24745] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59158,26 +59257,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1937), 1, + ACTIONS(1941), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59187,17 +59289,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24699] = 21, + [24817] = 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(1943), 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(1945), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(646), 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, + [24865] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59209,26 +59347,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1939), 1, - anon_sym_SEMI, - STATE(573), 1, + ACTIONS(1947), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59238,17 +59379,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24771] = 21, + [24937] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59260,26 +59398,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1941), 1, + ACTIONS(1949), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59289,17 +59430,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24843] = 21, + [25009] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59311,26 +59449,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1943), 1, + ACTIONS(1951), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59340,17 +59481,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24915] = 21, + [25081] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59362,26 +59500,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1945), 1, + ACTIONS(1953), 1, anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59391,17 +59532,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24987] = 21, + [25153] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59413,26 +59551,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1947), 1, - anon_sym_SEMI, - STATE(573), 1, + ACTIONS(1955), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59442,17 +59583,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25059] = 21, + [25225] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59464,26 +59602,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1949), 1, + ACTIONS(1957), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59493,56 +59634,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25131] = 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(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, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - 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, + [25297] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59554,26 +59653,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1955), 1, - anon_sym_RPAREN, - STATE(573), 1, + ACTIONS(1959), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59583,17 +59685,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25251] = 21, + [25369] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59605,85 +59704,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, - ACTIONS(1957), 1, - anon_sym_RPAREN, - STATE(573), 1, + ACTIONS(1961), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 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, + ACTIONS(1763), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [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(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, + [25441] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59695,26 +59755,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1963), 1, anon_sym_RPAREN, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59724,17 +59787,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25443] = 20, + [25513] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59746,22 +59806,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - STATE(573), 1, + ACTIONS(1865), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59771,20 +59838,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [25513] = 20, + [25585] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59796,22 +59857,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - STATE(573), 1, + ACTIONS(1865), 1, + anon_sym_COMMA, + ACTIONS(1967), 1, + anon_sym_RPAREN, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59821,20 +59889,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1967), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [25583] = 21, + [25657] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59846,26 +59908,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1841), 1, + ACTIONS(1865), 1, anon_sym_COMMA, ACTIONS(1969), 1, - anon_sym_RPAREN, - STATE(573), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59875,116 +59940,112 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25655] = 20, + [25729] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1508), 1, + anon_sym_RBRACK, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1775), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1971), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [25725] = 20, + [25798] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1508), 1, + ACTIONS(1554), 1, anon_sym_RBRACK, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1979), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1983), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1997), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25794] = 20, + [25867] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -59996,24 +60057,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(1999), 1, - anon_sym_COLON, - STATE(573), 1, + ACTIONS(1997), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60023,16 +60087,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25863] = 3, + [25936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 2, + ACTIONS(1817), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1072), 25, + ACTIONS(1815), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60058,62 +60119,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25898] = 20, + [25971] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1510), 1, + anon_sym_RBRACK, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - ACTIONS(2001), 1, - anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1775), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [25967] = 3, + [26040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 2, + ACTIONS(1046), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1809), 25, + ACTIONS(1044), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60139,113 +60200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26002] = 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(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(1556), 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, - [26140] = 3, + [26075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 2, + ACTIONS(1046), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1837), 25, + 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, @@ -60269,96 +60232,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26175] = 20, + [26110] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 1, - anon_sym_RBRACK, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1979), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1983), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1997), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - STATE(573), 1, + ACTIONS(1999), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1779), 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(1869), 1, - anon_sym_LBRACK_LBRACK, - 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, - 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, - [26279] = 3, + [26179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(1821), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1825), 26, + anon_sym_RBRACE, + ACTIONS(1819), 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, @@ -60382,14 +60313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26314] = 20, + [26214] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -60401,24 +60332,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(2005), 1, + ACTIONS(2001), 1, anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60428,17 +60362,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26383] = 20, + [26283] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -60450,24 +60381,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(2007), 1, + ACTIONS(2003), 1, anon_sym_COLON, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60477,16 +60411,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26452] = 3, + [26352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 2, + ACTIONS(1082), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1044), 25, + ACTIONS(1080), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60512,15 +60443,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26487] = 3, + [26387] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + ACTIONS(2005), 1, + anon_sym_SEMI, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [26456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1074), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1857), 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, @@ -60544,161 +60524,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26522] = 20, + [26491] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1522), 1, - anon_sym_RBRACK, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1979), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1983), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1997), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - STATE(573), 1, + ACTIONS(2007), 1, + anon_sym_RBRACK, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26591] = 20, + [26560] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1530), 1, + anon_sym_RBRACK, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - ACTIONS(2009), 1, - anon_sym_COLON, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1775), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26660] = 20, + [26629] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1979), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1983), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1997), 1, - anon_sym_QMARK, - ACTIONS(2011), 1, - anon_sym_RBRACK, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1664), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26729] = 20, + [26696] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -60710,24 +60689,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(2013), 1, - anon_sym_SEMI, - STATE(573), 1, + ACTIONS(2009), 1, + anon_sym_COLON, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60737,17 +60719,97 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, + [26765] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, + anon_sym_SLASH, + ACTIONS(1977), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1979), 1, + anon_sym_AMP_AMP, + ACTIONS(1981), 1, + anon_sym_PIPE, + ACTIONS(1983), 1, + anon_sym_CARET, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1995), 1, + anon_sym_QMARK, + ACTIONS(2011), 1, + anon_sym_RBRACK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1987), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1991), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26798] = 20, + [26834] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_LBRACK_LBRACK, + STATE(444), 1, + sym_string_literal, + ACTIONS(2013), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1835), 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, + [26873] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -60759,24 +60821,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, ACTIONS(2015), 1, anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60786,18 +60851,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26867] = 3, + [26942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(1825), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1845), 26, + anon_sym_RBRACE, + ACTIONS(1823), 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, @@ -60821,13 +60883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26902] = 3, + [26977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 2, + ACTIONS(1829), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1080), 25, + ACTIONS(1827), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60853,12 +60915,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26937] = 3, + [27012] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_RBRACK, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, + anon_sym_SLASH, + ACTIONS(1977), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1979), 1, + anon_sym_AMP_AMP, + ACTIONS(1981), 1, + anon_sym_PIPE, + ACTIONS(1983), 1, + anon_sym_CARET, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1995), 1, + anon_sym_QMARK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1987), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1991), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1082), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1853), 26, + ACTIONS(1080), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -60885,12 +60996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26972] = 3, + [27116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 1, + ACTIONS(1861), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1801), 26, + ACTIONS(1859), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -60917,104 +61028,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27007] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, - anon_sym_PIPE, - ACTIONS(1691), 1, - anon_sym_LPAREN2, - 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, + [27151] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1520), 1, + ACTIONS(1514), 1, anon_sym_RBRACK, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1979), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1983), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1997), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27137] = 5, + [27220] = 3, ACTIONS(3), 1, sym_comment, - STATE(771), 1, + ACTIONS(1833), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1831), 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, + [27255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1795), 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, + [27290] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(774), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(2021), 4, anon_sym_signed, @@ -61045,112 +61175,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, sym_primitive_type, sym_identifier, - [27176] = 20, + [27329] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(2024), 1, + sym_identifier, + ACTIONS(2033), 1, + sym_primitive_type, + STATE(774), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2031), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2027), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1568), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2029), 13, + 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, + [27372] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1548), 1, + anon_sym_RBRACK, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - ACTIONS(2024), 1, - anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1775), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27245] = 20, + [27441] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, - anon_sym_RBRACK, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 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, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1640), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1638), 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(1995), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27314] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [27494] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -61162,24 +61320,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(2026), 1, - anon_sym_COLON, - STATE(573), 1, + ACTIONS(2035), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -61189,18 +61350,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27383] = 3, + [27563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, + ACTIONS(1853), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1837), 26, + anon_sym_RBRACE, + ACTIONS(1851), 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, @@ -61224,34 +61382,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27418] = 7, + [27598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - sym_identifier, - ACTIONS(2037), 1, - sym_primitive_type, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2035), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2031), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1849), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2033), 13, + anon_sym_RBRACE, + ACTIONS(1847), 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___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -61260,12 +61405,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - [27461] = 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, + [27633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 26, + ACTIONS(1072), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61292,110 +61446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27496] = 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(2039), 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, - [27565] = 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(2041), 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, - [27634] = 3, + [27668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1857), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1817), 26, + ACTIONS(1855), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61422,54 +61478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27669] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - 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(1973), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1975), 2, - anon_sym_STAR, - anon_sym_PERCENT, - 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(1664), 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, - [27722] = 3, + [27703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 2, + ACTIONS(1801), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1833), 25, + ACTIONS(1799), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -61495,64 +61510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27757] = 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(2043), 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, - [27826] = 3, + [27738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 2, + ACTIONS(1801), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1817), 25, + ACTIONS(1799), 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, @@ -61576,95 +61542,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27861] = 20, + [27773] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1586), 1, + anon_sym_RBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - ACTIONS(2045), 1, - anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1775), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27930] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, - anon_sym_LBRACK_LBRACK, - 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, + [27842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1849), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1863), 26, + ACTIONS(1847), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61691,15 +61623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28004] = 3, + [27877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 2, + ACTIONS(1853), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1845), 25, + ACTIONS(1851), 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, @@ -61723,63 +61655,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28039] = 20, + [27912] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1526), 1, + anon_sym_RBRACK, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - ACTIONS(2049), 1, - anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1775), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28108] = 20, + [27981] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -61791,24 +61723,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(2051), 1, - anon_sym_SEMI, - STATE(573), 1, + ACTIONS(2037), 1, + anon_sym_COLON, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -61818,49 +61753,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - anon_sym_LBRACK_LBRACK, - 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, - 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, - [28212] = 20, + [28050] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -61872,24 +61772,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(2053), 1, - anon_sym_COLON, - STATE(573), 1, + ACTIONS(2039), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -61899,67 +61802,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28281] = 20, + [28119] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 1, + ACTIONS(1516), 1, anon_sym_RBRACK, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1979), 1, + ACTIONS(1977), 1, anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, + ACTIONS(1979), 1, anon_sym_AMP_AMP, - ACTIONS(1983), 1, + ACTIONS(1981), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1997), 1, + ACTIONS(1995), 1, anon_sym_QMARK, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28350] = 3, + [28188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 2, + ACTIONS(1797), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1863), 25, + ACTIONS(1795), 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, @@ -61983,113 +61883,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28385] = 20, + [28223] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1979), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1983), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1997), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(2055), 1, - anon_sym_RBRACK, - STATE(573), 1, + ACTIONS(2041), 1, + anon_sym_COLON, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28454] = 20, + [28292] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_RBRACK, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1979), 1, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1983), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1997), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - STATE(573), 1, + ACTIONS(2043), 1, + anon_sym_COLON, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28361] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, + anon_sym_SLASH, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1578), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1574), 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(1995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28523] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + [28410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 2, + ACTIONS(1833), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1108), 25, + ACTIONS(1831), 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, @@ -62113,61 +62052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28558] = 19, - 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, - 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(1610), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - 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, - [28625] = 3, + [28445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 2, + ACTIONS(1857), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1805), 25, + ACTIONS(1855), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -62193,62 +62084,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28660] = 20, + [28480] = 3, 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(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(1829), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1827), 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, + [28515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 2, + ACTIONS(1106), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1813), 25, + ACTIONS(1104), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -62274,13 +62148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28764] = 3, + [28550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 2, + ACTIONS(1110), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1797), 25, + ACTIONS(1108), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -62306,273 +62180,475 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28799] = 10, + [28585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1837), 1, + anon_sym_LBRACK_LBRACK, + STATE(440), 1, + sym_string_literal, + ACTIONS(2013), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1835), 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, + [28624] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + ACTIONS(2045), 1, + anon_sym_SEMI, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [28693] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + ACTIONS(2047), 1, + anon_sym_SEMI, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [28762] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + ACTIONS(2049), 1, + anon_sym_COLON, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [28831] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, - STATE(573), 1, + ACTIONS(1979), 1, + anon_sym_AMP_AMP, + ACTIONS(1981), 1, + anon_sym_PIPE, + ACTIONS(1983), 1, + anon_sym_CARET, + ACTIONS(1985), 1, + anon_sym_AMP, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1975), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1588), 6, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1582), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1574), 3, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - [28848] = 18, + [28896] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1981), 1, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, anon_sym_AMP_AMP, - ACTIONS(1983), 1, + ACTIONS(1769), 1, anon_sym_PIPE, - ACTIONS(1985), 1, + ACTIONS(1771), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1773), 1, anon_sym_AMP, - STATE(573), 1, + ACTIONS(1781), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1777), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1582), 3, + [28965] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 1, + anon_sym_SLASH, + ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + 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(1781), 1, anon_sym_QMARK, - [28913] = 20, + ACTIONS(2053), 1, + anon_sym_COLON, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [29034] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 1, - anon_sym_RBRACK, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 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, + ACTIONS(1983), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1997), 1, - anon_sym_QMARK, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28982] = 17, + ACTIONS(1574), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [29097] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1578), 1, + anon_sym_PIPE, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, ACTIONS(1983), 1, - anon_sym_PIPE, - ACTIONS(1985), 1, anon_sym_CARET, - ACTIONS(1987), 1, + ACTIONS(1985), 1, anon_sym_AMP, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1582), 4, + ACTIONS(1574), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [29045] = 17, + [29160] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1578), 1, anon_sym_PIPE, + ACTIONS(1580), 1, + anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, ACTIONS(1985), 1, - anon_sym_CARET, - ACTIONS(1987), 1, anon_sym_AMP, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1582), 4, + ACTIONS(1574), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, 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, + [29221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(1825), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1124), 26, + ACTIONS(1823), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62599,91 +62675,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29182] = 15, + [29256] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1975), 1, anon_sym_SLASH, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1578), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1973), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, + ACTIONS(1987), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1991), 2, + ACTIONS(1989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1993), 2, + ACTIONS(1991), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1995), 2, + ACTIONS(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1582), 5, + ACTIONS(1574), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [29241] = 3, + [29315] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1108), 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, - [29276] = 3, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 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(1781), 1, + anon_sym_QMARK, + ACTIONS(2055), 1, + anon_sym_SEMI, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1759), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [29384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(1861), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 26, + anon_sym_RBRACE, + ACTIONS(1859), 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, @@ -62707,12 +62800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29311] = 3, + [29419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 1, + ACTIONS(1821), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1072), 26, + ACTIONS(1819), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62739,15 +62832,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29346] = 3, + [29454] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 2, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, + anon_sym_SLASH, + STATE(600), 1, + sym_argument_list, + ACTIONS(1578), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1991), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1574), 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, + [29511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1805), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1867), 25, + ACTIONS(1803), 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, @@ -62771,12 +62907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29381] = 3, + [29546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1809), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1813), 26, + ACTIONS(1807), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62803,64 +62939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29416] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1516), 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, - [29485] = 3, + [29581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 2, + ACTIONS(1813), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1825), 25, + ACTIONS(1811), 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, @@ -62884,15 +62971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29520] = 3, + [29616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1805), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1797), 26, + anon_sym_RBRACE, + ACTIONS(1803), 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, @@ -62916,14 +63003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29555] = 20, + [29651] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -62935,24 +63022,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(2059), 1, + ACTIONS(2057), 1, anon_sym_SEMI, - STATE(573), 1, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -62962,97 +63052,94 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29624] = 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, - [29659] = 20, + [29720] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1578), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1574), 9, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(2061), 1, - anon_sym_COLON, - STATE(573), 1, + [29773] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, + anon_sym_SLASH, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1578), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1574), 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(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [29728] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + [29824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 2, + ACTIONS(1809), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1801), 25, + ACTIONS(1807), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -63078,14 +63165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29763] = 20, + [29859] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1568), 1, + ACTIONS(1580), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1761), 1, anon_sym_SLASH, ACTIONS(1765), 1, anon_sym_PIPE_PIPE, @@ -63097,24 +63184,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_QMARK, - ACTIONS(2063), 1, - anon_sym_SEMI, - STATE(573), 1, + ACTIONS(2059), 1, + anon_sym_COLON, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1761), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(1763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -63124,66 +63214,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1779), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29832] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - 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(1588), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1973), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1975), 2, - anon_sym_STAR, - anon_sym_PERCENT, - 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), 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, + [29928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(1106), 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, + 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, @@ -63204,56 +63246,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29928] = 12, + [29963] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(573), 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(1781), 1, + anon_sym_QMARK, + ACTIONS(2061), 1, + anon_sym_SEMI, + STATE(600), 1, sym_argument_list, - ACTIONS(1570), 2, + ACTIONS(1582), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 2, + ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1973), 2, + ACTIONS(1757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1975), 2, + ACTIONS(1759), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1995), 2, + ACTIONS(1763), 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(1582), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + 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, - anon_sym_RBRACK, - anon_sym_QMARK, - [29981] = 3, + [30032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 2, + ACTIONS(1110), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1124), 25, + ACTIONS(1108), 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, @@ -63277,12 +63327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30016] = 3, + [30067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 1, + ACTIONS(1126), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1080), 26, + ACTIONS(1124), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -63309,60 +63359,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30051] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LBRACK, - 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(1973), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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(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, [30102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(1837), 1, anon_sym_LBRACK_LBRACK, - STATE(440), 1, + STATE(442), 1, sym_string_literal, - ACTIONS(2047), 5, + ACTIONS(2013), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1829), 20, + ACTIONS(1835), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -63383,13 +63393,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30141] = 3, + [30141] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1520), 1, + anon_sym_RBRACK, + ACTIONS(1580), 1, + anon_sym_LBRACK, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, + anon_sym_SLASH, + ACTIONS(1977), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1979), 1, + anon_sym_AMP_AMP, + ACTIONS(1981), 1, + anon_sym_PIPE, + ACTIONS(1983), 1, + anon_sym_CARET, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1995), 1, + anon_sym_QMARK, + STATE(600), 1, + sym_argument_list, + ACTIONS(1582), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1584), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1987), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1991), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 2, + ACTIONS(1126), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1857), 25, + ACTIONS(1124), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -63415,18 +63474,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30176] = 3, + [30245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 2, + ACTIONS(1837), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1104), 25, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(441), 1, + sym_string_literal, + ACTIONS(2013), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1835), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -63447,13 +63508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30211] = 3, + [30284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 2, + ACTIONS(1813), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1853), 25, + ACTIONS(1811), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -63479,12 +63540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30246] = 3, + [30319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 1, + ACTIONS(1817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1044), 26, + ACTIONS(1815), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -63511,56 +63572,7 @@ static const uint16_t ts_small_parse_table[] = { 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(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, + [30354] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1190), 1, @@ -63569,22 +63581,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(1750), 1, + ACTIONS(1748), 1, anon_sym_LBRACK, - STATE(1018), 1, + STATE(1037), 1, sym__declarator, - STATE(1115), 1, + STATE(1111), 1, sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - ACTIONS(2065), 2, + ACTIONS(2063), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -63592,44 +63604,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [30408] = 14, + [30412] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2067), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1074), 1, - sym__type_declarator, - STATE(1384), 1, + STATE(1034), 1, + sym__declarator, + STATE(1403), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(983), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(994), 2, + STATE(843), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1746), 3, + STATE(987), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63638,39 +63650,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1104), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [30463] = 14, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [30467] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1018), 1, + STATE(1026), 1, sym__declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(990), 2, + STATE(984), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(994), 2, + STATE(996), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63679,39 +63691,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [30518] = 14, + [30522] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2073), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, STATE(1051), 1, sym__field_declarator, - STATE(1330), 1, + STATE(1331), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(842), 2, + STATE(841), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(989), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63720,39 +63732,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1090), 5, + STATE(1096), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [30573] = 14, + [30577] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, STATE(1073), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(987), 2, + STATE(988), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(994), 2, + STATE(996), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63761,39 +63773,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [30628] = 14, + [30632] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, - sym_identifier, ACTIONS(2069), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(2071), 1, + anon_sym_LPAREN2, + ACTIONS(2073), 1, + anon_sym_STAR, + STATE(1003), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1052), 1, + sym__field_declarator, + STATE(1331), 1, + sym_ms_based_modifier, + ACTIONS(1746), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(985), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(996), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1744), 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(1096), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [30687] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(2075), 1, + sym_identifier, + ACTIONS(2077), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1075), 1, + STATE(1069), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(837), 2, + STATE(844), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(986), 2, + STATE(991), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63802,39 +63855,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [30683] = 14, + [30742] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2067), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1047), 1, - sym__field_declarator, - STATE(1330), 1, + STATE(1037), 1, + sym__declarator, + STATE(1403), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(991), 2, + STATE(983), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(994), 2, + STATE(996), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63843,39 +63896,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1090), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [30738] = 14, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [30797] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2079), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1057), 1, - sym__field_declarator, - STATE(1330), 1, + STATE(1062), 1, + sym__type_declarator, + STATE(1385), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(848), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(984), 2, + STATE(990), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1746), 3, + STATE(996), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63884,39 +63937,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1090), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [30793] = 14, + STATE(1109), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [30852] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1074), 1, + STATE(1062), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(840), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(983), 2, + STATE(990), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63925,39 +63978,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [30848] = 14, + [30907] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2073), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1018), 1, - sym__declarator, - STATE(1402), 1, + STATE(1052), 1, + sym__field_declarator, + STATE(1331), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(846), 2, + STATE(847), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(990), 2, + STATE(985), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63966,39 +64019,39 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(1096), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [30962] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2073), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1022), 1, - sym__declarator, - STATE(1402), 1, + STATE(1053), 1, + sym__field_declarator, + STATE(1331), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(985), 2, + STATE(986), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(994), 2, + STATE(996), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -64007,39 +64060,39 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(1096), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [31017] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, STATE(1003), 1, sym_ms_unaligned_ptr_modifier, - STATE(1038), 1, + STATE(1037), 1, sym__declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - ACTIONS(1748), 2, + ACTIONS(1746), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(838), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(988), 2, + STATE(983), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1746), 3, + ACTIONS(1744), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -64048,54 +64101,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [31013] = 14, + [31072] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2081), 1, + anon_sym_SEMI, + ACTIONS(1869), 2, anon_sym___based, - ACTIONS(2077), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(1871), 2, anon_sym_LPAREN2, - ACTIONS(2081), 1, anon_sym_STAR, - STATE(1003), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1051), 1, - sym__field_declarator, - STATE(1330), 1, - sym_ms_based_modifier, - ACTIONS(1748), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(989), 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(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(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(723), 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, + [31118] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64106,10 +64154,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2083), 1, anon_sym_SEMI, - ACTIONS(1887), 2, + ACTIONS(1869), 2, anon_sym___based, sym_identifier, - ACTIONS(1889), 2, + ACTIONS(1871), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, + STATE(723), 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, + [31164] = 10, + 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(2085), 1, + anon_sym_SEMI, + ACTIONS(1869), 2, + anon_sym___based, + sym_identifier, + ACTIONS(1871), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, + STATE(723), 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, + [31210] = 10, + 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(2087), 1, + anon_sym_SEMI, + ACTIONS(1869), 2, + anon_sym___based, + sym_identifier, + ACTIONS(1871), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(45), 4, @@ -64123,7 +64243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(706), 7, + STATE(723), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64131,122 +64251,44 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [31114] = 10, + [31256] = 5, 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(2085), 1, - anon_sym_SEMI, - ACTIONS(1887), 2, - anon_sym___based, - sym_identifier, - ACTIONS(1889), 2, + ACTIONS(2093), 1, + anon_sym_LBRACE, + STATE(872), 1, + sym_field_declaration_list, + ACTIONS(2091), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2089), 14, anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - 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, - [31160] = 10, - 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(2087), 1, - anon_sym_SEMI, - ACTIONS(1887), 2, anon_sym___based, - sym_identifier, - ACTIONS(1889), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - 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, - [31206] = 10, - 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(2089), 1, - anon_sym_SEMI, - ACTIONS(1887), 2, - anon_sym___based, - sym_identifier, - ACTIONS(1889), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, - 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, - [31252] = 5, + sym_identifier, + [31291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 1, + ACTIONS(2099), 1, anon_sym_LBRACE, - STATE(872), 1, + STATE(895), 1, sym_enumerator_list, - ACTIONS(2093), 7, + ACTIONS(2097), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64254,7 +64296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2091), 14, + ACTIONS(2095), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64269,7 +64311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31287] = 13, + [31326] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64286,9 +64328,9 @@ static const uint16_t ts_small_parse_table[] = { sym__type_specifier, STATE(999), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1362), 1, + STATE(1363), 1, sym_type_descriptor, - STATE(866), 2, + STATE(860), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64301,50 +64343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(874), 5, + STATE(881), 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(878), 1, - sym_field_declaration_list, - ACTIONS(2099), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2097), 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, - [31373] = 5, + [31377] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2093), 1, anon_sym_LBRACE, - STATE(884), 1, + STATE(885), 1, sym_field_declaration_list, - ACTIONS(2105), 7, + ACTIONS(2103), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64352,7 +64364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2103), 14, + ACTIONS(2101), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64367,14 +64379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31408] = 5, + [31412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2093), 1, anon_sym_LBRACE, - STATE(880), 1, + STATE(871), 1, sym_field_declaration_list, - ACTIONS(2109), 7, + ACTIONS(2107), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64382,7 +64394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2107), 14, + ACTIONS(2105), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64397,14 +64409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31443] = 5, + [31447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2093), 1, anon_sym_LBRACE, - STATE(885), 1, + STATE(883), 1, sym_field_declaration_list, - ACTIONS(2113), 7, + ACTIONS(2111), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64412,7 +64424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2111), 14, + ACTIONS(2109), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64427,7 +64439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31478] = 12, + [31482] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64440,11 +64452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1198), 1, sym_identifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1024), 1, sym__type_specifier, - STATE(864), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64457,42 +64469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [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, + [31530] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64505,11 +64488,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1198), 1, sym_identifier, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1044), 1, + STATE(994), 1, sym__type_specifier, - STATE(871), 2, + STATE(999), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64517,18 +64500,18 @@ 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(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31608] = 12, + [31578] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64541,11 +64524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1198), 1, sym_identifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1035), 1, + STATE(1036), 1, sym__type_specifier, - STATE(871), 2, + STATE(862), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64558,13 +64541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31656] = 12, + [31626] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64577,11 +64560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1198), 1, sym_identifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1023), 1, + STATE(1041), 1, sym__type_specifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64594,13 +64577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31704] = 12, + [31674] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64613,11 +64596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1198), 1, sym_identifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1029), 1, sym__type_specifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64630,13 +64613,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31752] = 12, + [31722] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64649,11 +64632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1198), 1, sym_identifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1020), 1, + STATE(1039), 1, sym__type_specifier, - STATE(862), 2, + STATE(863), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64666,13 +64649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31800] = 12, + [31770] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64685,11 +64668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1198), 1, sym_identifier, - STATE(998), 1, - sym__type_specifier, - STATE(999), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(871), 2, + STATE(1023), 1, + sym__type_specifier, + STATE(859), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64697,18 +64680,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1148), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31848] = 12, + [31818] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64721,11 +64704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1198), 1, sym_identifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1025), 1, + STATE(1019), 1, sym__type_specifier, - STATE(863), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64738,13 +64721,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31896] = 12, + [31866] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_LPAREN2, + STATE(913), 1, + sym_preproc_argument_list, + ACTIONS(2117), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2113), 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, + [31900] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64757,11 +64769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1198), 1, sym_identifier, - STATE(776), 1, + STATE(775), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1031), 1, + STATE(1025), 1, sym__type_specifier, - STATE(861), 2, + STATE(866), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64774,16 +64786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(874), 5, + STATE(881), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31944] = 3, + [31948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 7, + ACTIONS(2121), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64791,7 +64803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2121), 14, + ACTIONS(2119), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64806,77 +64818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31973] = 16, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32061] = 3, + [31977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 7, + ACTIONS(2125), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64884,7 +64829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2156), 14, + ACTIONS(2123), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64899,10 +64844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32090] = 3, + [32006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 7, + ACTIONS(2129), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64910,7 +64855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2160), 14, + ACTIONS(2127), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64925,10 +64870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32119] = 3, + [32035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 7, + ACTIONS(2133), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64936,7 +64881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2164), 14, + ACTIONS(2131), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64951,10 +64896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32148] = 3, + [32064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 7, + ACTIONS(2137), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64962,7 +64907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2168), 14, + ACTIONS(2135), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64977,10 +64922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32177] = 3, + [32093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 7, + ACTIONS(2141), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64988,7 +64933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2172), 14, + ACTIONS(2139), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65003,18 +64948,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32206] = 3, + [32122] = 5, + ACTIONS(2113), 1, + anon_sym_LF, + ACTIONS(2143), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, + sym_comment, + STATE(957), 1, + sym_preproc_argument_list, + ACTIONS(2117), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 7, + ACTIONS(2147), 1, + anon_sym_LPAREN2, + ACTIONS(1253), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2176), 14, + ACTIONS(1240), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65029,10 +65003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32235] = 3, + [32186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2182), 7, + ACTIONS(2152), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65040,7 +65014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2180), 14, + ACTIONS(2150), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65055,10 +65029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32264] = 3, + [32215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 7, + ACTIONS(2156), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65066,7 +65040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2184), 14, + ACTIONS(2154), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65081,10 +65055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32293] = 3, + [32244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 7, + ACTIONS(2160), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65092,7 +65066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2188), 14, + ACTIONS(2158), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65107,10 +65081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32322] = 3, + [32273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 7, + ACTIONS(2164), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65118,7 +65092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2192), 14, + ACTIONS(2162), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65133,10 +65107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32351] = 3, + [32302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 7, + ACTIONS(2168), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65144,7 +65118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2196), 14, + ACTIONS(2166), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65159,15 +65133,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32380] = 3, + [32331] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2170), 1, + anon_sym_COMMA, + ACTIONS(2172), 1, + anon_sym_RPAREN, + ACTIONS(2178), 1, + anon_sym_SLASH, + ACTIONS(2180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2182), 1, + anon_sym_AMP_AMP, + ACTIONS(2184), 1, + anon_sym_PIPE, + ACTIONS(2186), 1, + anon_sym_CARET, + ACTIONS(2188), 1, + anon_sym_AMP, + STATE(1207), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2176), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2190), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2192), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2194), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(2200), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2200), 20, + anon_sym_COLON, + ACTIONS(2198), 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, @@ -65176,19 +65197,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + [32415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 7, + ACTIONS(2204), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65196,7 +65209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2204), 14, + ACTIONS(2202), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65211,10 +65224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32438] = 3, + [32444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 7, + ACTIONS(2208), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65222,7 +65235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2208), 14, + ACTIONS(2206), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65237,10 +65250,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32467] = 3, + [32473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 7, + STATE(886), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2210), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1752), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(1750), 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, + [32506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2215), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65248,7 +65289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2212), 14, + ACTIONS(2213), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65263,10 +65304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32496] = 3, + [32535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 7, + ACTIONS(2219), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65274,7 +65315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2216), 14, + ACTIONS(2217), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65289,32 +65330,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32525] = 10, + [32564] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(2223), 1, anon_sym_RPAREN, - ACTIONS(2224), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2232), 1, + ACTIONS(2233), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(895), 7, + STATE(882), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65322,38 +65363,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [32568] = 5, - ACTIONS(2115), 1, - anon_sym_LF, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, + [32607] = 16, + ACTIONS(3), 1, sym_comment, - STATE(958), 1, - sym_preproc_argument_list, - ACTIONS(2119), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2170), 1, + anon_sym_COMMA, + ACTIONS(2178), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2180), 1, anon_sym_PIPE_PIPE, + ACTIONS(2182), 1, anon_sym_AMP_AMP, + ACTIONS(2184), 1, anon_sym_PIPE, + ACTIONS(2186), 1, anon_sym_CARET, + ACTIONS(2188), 1, anon_sym_AMP, + ACTIONS(2237), 1, + anon_sym_RPAREN, + STATE(1183), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2176), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2190), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2192), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2194), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(2196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32601] = 3, + [32662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 7, + ACTIONS(2241), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65361,7 +65413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2240), 14, + ACTIONS(2239), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65376,10 +65428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32630] = 3, + [32691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2245), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65387,7 +65439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2244), 14, + ACTIONS(2243), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65402,32 +65454,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32659] = 10, + [32720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2249), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2247), 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(2224), 1, + [32749] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + sym_identifier, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2248), 1, + ACTIONS(2251), 1, anon_sym_RPAREN, - ACTIONS(2250), 1, + ACTIONS(2253), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(870), 7, + STATE(890), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65435,10 +65513,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [32702] = 3, + [32792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 7, + ACTIONS(2257), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65446,7 +65524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2252), 14, + ACTIONS(2255), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65461,24 +65539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32731] = 4, + [32821] = 3, 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, + ACTIONS(2261), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1240), 14, + ACTIONS(2259), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -65487,258 +65556,64 @@ static const uint16_t ts_small_parse_table[] = { 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, - [32762] = 16, + [32850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, - anon_sym_COMMA, - ACTIONS(2133), 1, + ACTIONS(2265), 5, 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(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, - 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, - [32817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2263), 7, + ACTIONS(2263), 15, 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, - [32846] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - sym_identifier, - ACTIONS(2224), 1, - anon_sym_LPAREN2, - ACTIONS(2226), 1, - anon_sym_defined, - ACTIONS(2265), 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(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, - [32886] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - anon_sym_SLASH, - ACTIONS(2143), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_PIPE, - 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, - ACTIONS(2267), 5, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [32930] = 9, - ACTIONS(3), 1, - sym_comment, - 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, - 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(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(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(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(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, - ACTIONS(2287), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [33060] = 9, + [32878] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2289), 1, + ACTIONS(2267), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(967), 7, + STATE(946), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65746,30 +65621,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33100] = 9, + [32918] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2291), 1, + ACTIONS(2279), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(971), 7, + STATE(970), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65777,30 +65652,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33140] = 9, + [32958] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2293), 1, + ACTIONS(2283), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(970), 7, + STATE(971), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65808,30 +65683,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33180] = 9, + [32998] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2295), 1, + ACTIONS(2285), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(968), 7, + STATE(981), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65839,30 +65714,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33220] = 9, + [33038] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2297), 1, + ACTIONS(2287), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(962), 7, + STATE(955), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65870,30 +65745,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33260] = 9, + [33078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2299), 1, + ACTIONS(2289), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(960), 7, + STATE(972), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65901,30 +65776,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33300] = 9, + [33118] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2301), 1, + ACTIONS(2291), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(959), 7, + STATE(958), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65932,30 +65807,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33340] = 9, + [33158] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2303), 1, + ACTIONS(2293), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(977), 7, + STATE(973), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65963,30 +65838,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33380] = 9, + [33198] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2178), 1, + anon_sym_SLASH, + ACTIONS(2180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2182), 1, + anon_sym_AMP_AMP, + ACTIONS(2184), 1, + anon_sym_PIPE, + ACTIONS(2186), 1, + anon_sym_CARET, + ACTIONS(2188), 1, + anon_sym_AMP, + ACTIONS(2174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2176), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2190), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2192), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2194), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2295), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [33248] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2305), 1, + ACTIONS(2297), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(974), 7, + STATE(978), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65994,30 +65905,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33420] = 9, + [33288] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2307), 1, + ACTIONS(2299), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(979), 7, + STATE(954), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66025,30 +65936,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33460] = 9, + [33328] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2309), 1, + ACTIONS(2301), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(955), 7, + STATE(961), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66056,30 +65967,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33500] = 9, + [33368] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2311), 1, + ACTIONS(2303), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(956), 7, + STATE(963), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66087,30 +65998,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33540] = 9, + [33408] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2313), 1, + ACTIONS(2305), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(980), 7, + STATE(965), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66118,30 +66029,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33580] = 9, + [33448] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2315), 1, + ACTIONS(2307), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(901), 7, + STATE(966), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66149,28 +66060,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33620] = 7, + [33488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2311), 5, 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, + ACTIONS(2309), 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, @@ -66178,72 +66083,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33656] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33516] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 5, + ACTIONS(2178), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2317), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2174), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2176), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(2192), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2194), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2315), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2313), 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, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33684] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - sym_identifier, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - anon_sym_defined, - ACTIONS(2321), 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(982), 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, - [33724] = 3, + [33556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 5, + ACTIONS(2319), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2323), 15, + ACTIONS(2317), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66259,16 +66141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [33752] = 3, + [33584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 5, + ACTIONS(1562), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2327), 15, + ACTIONS(1560), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66284,30 +66166,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [33780] = 9, + [33612] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2331), 1, + ACTIONS(2321), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(942), 7, + STATE(959), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66315,16 +66197,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33820] = 3, + [33652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1650), 5, + ACTIONS(2325), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1648), 15, + ACTIONS(2323), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66340,30 +66222,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [33848] = 9, + [33680] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2333), 1, + ACTIONS(2327), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(949), 7, + STATE(938), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66371,30 +66253,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33888] = 9, + [33720] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2335), 1, + ACTIONS(2329), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(952), 7, + STATE(942), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66402,30 +66284,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33928] = 9, + [33760] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2337), 1, + ACTIONS(2331), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(947), 7, + STATE(943), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66433,30 +66315,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33968] = 9, + [33800] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2339), 1, + ACTIONS(2333), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(961), 7, + STATE(944), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66464,30 +66346,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34008] = 9, + [33840] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2341), 1, + ACTIONS(2335), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(946), 7, + STATE(945), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66495,30 +66377,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34048] = 9, + [33880] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2343), 1, + ACTIONS(2337), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(945), 7, + STATE(969), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66526,30 +66408,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34088] = 9, + [33920] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2345), 1, + ACTIONS(2339), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(898), 7, + STATE(982), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66557,30 +66439,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34128] = 9, + [33960] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2347), 1, + ACTIONS(2341), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(954), 7, + STATE(947), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66588,55 +66470,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34168] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + [34000] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2353), 1, + ACTIONS(2343), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(920), 7, + STATE(914), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66644,30 +66501,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34236] = 9, + [34040] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2355), 1, + ACTIONS(2345), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(950), 7, + STATE(949), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66675,30 +66532,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34276] = 9, + [34080] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2227), 1, anon_sym_defined, - ACTIONS(2357), 1, + ACTIONS(2347), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2229), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2235), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(963), 7, + STATE(951), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66706,55 +66563,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2359), 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, - [34344] = 9, + [34120] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2363), 1, + ACTIONS(2349), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(916), 7, + STATE(968), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66762,55 +66594,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34384] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - 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, + [34160] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2226), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2369), 1, + ACTIONS(2351), 1, sym_number_literal, - ACTIONS(2228), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2234), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(948), 7, + STATE(977), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66818,16 +66625,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34452] = 3, + [34200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 5, + ACTIONS(2355), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2371), 15, + ACTIONS(2353), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66843,16 +66650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34480] = 3, + [34228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 5, + ACTIONS(2359), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 15, + ACTIONS(2357), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66868,7 +66675,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34508] = 13, + [34256] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + sym_identifier, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + anon_sym_defined, + ACTIONS(2361), 1, + sym_number_literal, + ACTIONS(2229), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2231), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2235), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(906), 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, + [34296] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1190), 1, @@ -66877,46 +66715,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(1750), 1, + ACTIONS(1748), 1, anon_sym_LBRACK, - STATE(1077), 1, + STATE(1087), 1, sym__declarator, STATE(1119), 1, sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - ACTIONS(2379), 2, + ACTIONS(2363), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [34556] = 5, + [34344] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + sym_identifier, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + anon_sym_defined, + ACTIONS(2365), 1, + sym_number_literal, + ACTIONS(2229), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2231), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2235), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(956), 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, + [34384] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + sym_identifier, + ACTIONS(2271), 1, + anon_sym_LPAREN2, + ACTIONS(2273), 1, + anon_sym_defined, + ACTIONS(2367), 1, + sym_number_literal, + ACTIONS(2275), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2277), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2281), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(967), 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, + [34424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2178), 1, anon_sym_SLASH, - ACTIONS(2131), 2, + ACTIONS(2176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2269), 4, + ACTIONS(2315), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2267), 13, + ACTIONS(2313), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66930,30 +66830,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34588] = 9, + [34456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2371), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2369), 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, + [34484] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2381), 1, + ACTIONS(2373), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(976), 7, + STATE(960), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66961,30 +66886,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34628] = 9, + [34524] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2269), 1, sym_identifier, - ACTIONS(2273), 1, + ACTIONS(2271), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, + ACTIONS(2273), 1, anon_sym_defined, - ACTIONS(2383), 1, + ACTIONS(2375), 1, sym_number_literal, - ACTIONS(2277), 2, + ACTIONS(2275), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2279), 2, + ACTIONS(2277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2283), 5, + ACTIONS(2281), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(981), 7, + STATE(974), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66992,128 +66917,215 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34668] = 12, + [34564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2315), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2313), 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, + [34592] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2178), 1, anon_sym_SLASH, - ACTIONS(2141), 1, + ACTIONS(2182), 1, + anon_sym_AMP_AMP, + ACTIONS(2184), 1, + anon_sym_PIPE, + ACTIONS(2186), 1, anon_sym_CARET, - ACTIONS(2143), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2269), 1, + ACTIONS(2174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2176), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2190), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2192), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2194), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2313), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [34640] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, + anon_sym_SLASH, + ACTIONS(2184), 1, anon_sym_PIPE, - ACTIONS(2129), 2, + ACTIONS(2186), 1, + anon_sym_CARET, + ACTIONS(2188), 1, + anon_sym_AMP, + ACTIONS(2174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2131), 2, + ACTIONS(2176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2145), 2, + ACTIONS(2190), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2147), 2, + ACTIONS(2192), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2149), 2, + ACTIONS(2194), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2151), 2, + ACTIONS(2196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2267), 4, + ACTIONS(2313), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [34714] = 12, + [34686] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2178), 1, anon_sym_SLASH, - ACTIONS(2139), 1, - anon_sym_PIPE, - ACTIONS(2141), 1, + ACTIONS(2186), 1, anon_sym_CARET, - ACTIONS(2143), 1, + ACTIONS(2188), 1, + anon_sym_AMP, + ACTIONS(2315), 1, + anon_sym_PIPE, + ACTIONS(2174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2176), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2190), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2192), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2194), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2313), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [34732] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, + anon_sym_SLASH, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2129), 2, + ACTIONS(2315), 1, + anon_sym_PIPE, + ACTIONS(2174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2131), 2, + ACTIONS(2176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2145), 2, + ACTIONS(2190), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2147), 2, + ACTIONS(2192), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2149), 2, + ACTIONS(2194), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2151), 2, + ACTIONS(2196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2267), 4, + ACTIONS(2313), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [34760] = 13, + anon_sym_CARET, + [34776] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2178), 1, anon_sym_SLASH, - 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, + ACTIONS(2174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2131), 2, + ACTIONS(2176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2145), 2, + ACTIONS(2190), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2147), 2, + ACTIONS(2192), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2149), 2, + ACTIONS(2194), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2151), 2, + ACTIONS(2196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2267), 3, + ACTIONS(2315), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2313), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [34808] = 6, + anon_sym_AMP_AMP, + anon_sym_CARET, + [34818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2379), 5, 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, + ACTIONS(2377), 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, @@ -67123,22 +67135,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34842] = 3, + [34846] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 5, + ACTIONS(2178), 1, anon_sym_SLASH, + ACTIONS(2174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2176), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2315), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2267), 15, + ACTIONS(2313), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -67146,32 +67164,54 @@ 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, - [34870] = 9, + [34882] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + sym_identifier, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + anon_sym_defined, + ACTIONS(2381), 1, + sym_number_literal, + ACTIONS(2229), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2231), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2235), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(918), 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, + [34922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2178), 1, anon_sym_SLASH, - ACTIONS(2129), 2, + ACTIONS(2174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2131), 2, + ACTIONS(2176), 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, + ACTIONS(2315), 4, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2267), 7, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2313), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -67179,74 +67219,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [34910] = 10, - ACTIONS(3), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34956] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2133), 1, - anon_sym_SLASH, - ACTIONS(2129), 2, + ACTIONS(2317), 1, + anon_sym_LF, + ACTIONS(2319), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2131), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2145), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(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, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_CARET, - [34952] = 12, - ACTIONS(2238), 1, + [34983] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2263), 1, anon_sym_LF, - ACTIONS(2391), 1, + ACTIONS(2265), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, 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(2387), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2405), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35010] = 6, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2313), 1, + anon_sym_LF, + ACTIONS(2383), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2389), 3, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2315), 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, - [34997] = 12, - ACTIONS(2238), 1, + [35043] = 12, + ACTIONS(2145), 1, sym_comment, + ACTIONS(2389), 1, + anon_sym_LF, ACTIONS(2391), 1, anon_sym_PIPE_PIPE, ACTIONS(2393), 1, @@ -67257,18 +67313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2407), 1, - anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -67277,54 +67331,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35042] = 14, + [35088] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2178), 1, anon_sym_SLASH, - ACTIONS(2135), 1, + ACTIONS(2180), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2182), 1, anon_sym_AMP_AMP, - ACTIONS(2139), 1, + ACTIONS(2184), 1, anon_sym_PIPE, - ACTIONS(2141), 1, + ACTIONS(2186), 1, anon_sym_CARET, - ACTIONS(2143), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2409), 1, + ACTIONS(2405), 1, anon_sym_RPAREN, - ACTIONS(2129), 2, + ACTIONS(2174), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2131), 2, + ACTIONS(2176), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2145), 2, + ACTIONS(2190), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2147), 2, + ACTIONS(2192), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2149), 2, + ACTIONS(2194), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2151), 2, + ACTIONS(2196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35091] = 5, - ACTIONS(2238), 1, + [35137] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(2309), 1, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2311), 18, 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, @@ -67338,8 +67390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35122] = 12, - ACTIONS(2238), 1, + [35164] = 12, + ACTIONS(2145), 1, sym_comment, ACTIONS(2391), 1, anon_sym_PIPE_PIPE, @@ -67351,18 +67403,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2411), 1, + ACTIONS(2407), 1, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2405), 2, + ACTIONS(2385), 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, + [35209] = 12, + ACTIONS(2145), 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(2409), 1, + anon_sym_LF, + ACTIONS(2383), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2389), 3, + ACTIONS(2401), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -67371,8 +67456,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35167] = 3, - ACTIONS(2238), 1, + [35254] = 3, + ACTIONS(2145), 1, sym_comment, ACTIONS(2323), 1, anon_sym_LF, @@ -67395,12 +67480,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35194] = 3, - ACTIONS(2238), 1, + [35281] = 7, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(2313), 1, anon_sym_LF, - ACTIONS(2319), 18, + ACTIONS(2383), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2385), 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, + ACTIONS(2315), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35316] = 3, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_LF, + ACTIONS(2359), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67419,27 +67532,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35221] = 9, - ACTIONS(2238), 1, + [35343] = 8, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(2313), 1, anon_sym_LF, - ACTIONS(2399), 1, - anon_sym_AMP, - ACTIONS(2387), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2405), 2, + ACTIONS(2385), 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, + ACTIONS(2315), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [35380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2414), 1, + anon_sym_LPAREN2, + ACTIONS(2418), 1, + anon_sym_LBRACK, + ACTIONS(1253), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2411), 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, + [35413] = 9, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2313), 1, + anon_sym_LF, + ACTIONS(2399), 1, + anon_sym_AMP, + ACTIONS(2383), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2389), 3, + ACTIONS(2401), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 4, + ACTIONS(2315), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67449,29 +67618,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35260] = 10, - ACTIONS(2238), 1, + [35452] = 10, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(2313), 1, anon_sym_LF, ACTIONS(2397), 1, anon_sym_CARET, ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2387), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2405), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2269), 3, + ACTIONS(2315), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(2389), 3, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -67480,8 +67649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35301] = 12, - ACTIONS(2238), 1, + [35493] = 12, + ACTIONS(2145), 1, sym_comment, ACTIONS(2391), 1, anon_sym_PIPE_PIPE, @@ -67493,18 +67662,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2413), 1, + ACTIONS(2421), 1, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -67513,30 +67682,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35346] = 11, - ACTIONS(2238), 1, + [35538] = 12, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2267), 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(2397), 1, anon_sym_CARET, ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2269), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2387), 2, + ACTIONS(2423), 1, + anon_sym_LF, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -67545,107 +67715,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35389] = 3, - ACTIONS(2238), 1, + [35583] = 12, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2327), 1, - anon_sym_LF, - ACTIONS(2329), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, - 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, - [35416] = 3, - ACTIONS(1648), 1, + ACTIONS(2425), 1, anon_sym_LF, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(1650), 18, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(2387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35443] = 3, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(2349), 1, - anon_sym_LF, - ACTIONS(2351), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2401), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35470] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_LPAREN2, - ACTIONS(2422), 1, - anon_sym_LBRACK, - ACTIONS(1253), 2, - anon_sym_COMMA, - anon_sym_STAR, - 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, + [35628] = 12, + ACTIONS(2145), 1, sym_comment, ACTIONS(2391), 1, anon_sym_PIPE_PIPE, @@ -67657,18 +67761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2425), 1, + ACTIONS(2427), 1, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -67677,31 +67781,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35548] = 12, - ACTIONS(2238), 1, + [35673] = 11, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(2313), 1, anon_sym_LF, - 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(2399), 1, anon_sym_AMP, - ACTIONS(2387), 2, + ACTIONS(2315), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -67710,10 +67813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35593] = 12, - ACTIONS(2238), 1, + [35716] = 12, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2313), 1, + anon_sym_LF, + ACTIONS(2315), 1, anon_sym_PIPE_PIPE, ACTIONS(2393), 1, anon_sym_AMP_AMP, @@ -67723,18 +67828,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -67743,12 +67846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35638] = 3, - ACTIONS(2238), 1, + [35761] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(2313), 1, anon_sym_LF, - ACTIONS(2269), 18, + ACTIONS(2315), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67767,42 +67870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35665] = 4, - ACTIONS(2238), 1, + [35788] = 4, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(2313), 1, anon_sym_LF, - ACTIONS(2389), 3, + ACTIONS(2385), 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, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35694] = 3, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_LF, - ACTIONS(2377), 18, + ACTIONS(2315), 15, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67816,12 +67895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35721] = 3, - ACTIONS(2238), 1, + [35817] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(2353), 1, anon_sym_LF, - ACTIONS(2373), 18, + ACTIONS(2355), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67840,40 +67919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35748] = 7, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_LF, - ACTIONS(2387), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(2269), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [35783] = 3, - ACTIONS(2238), 1, + [35844] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2359), 1, + ACTIONS(2377), 1, anon_sym_LF, - ACTIONS(2361), 18, + ACTIONS(2379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67892,8 +67943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35810] = 12, - ACTIONS(2238), 1, + [35871] = 12, + ACTIONS(2145), 1, sym_comment, ACTIONS(2391), 1, anon_sym_PIPE_PIPE, @@ -67907,39 +67958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(2429), 1, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2405), 2, + ACTIONS(2387), 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, - [35855] = 8, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(2267), 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, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -67948,23 +67976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - 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, + [35916] = 5, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(2313), 1, anon_sym_LF, - ACTIONS(2367), 18, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2315), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67978,22 +68002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35919] = 6, - ACTIONS(2238), 1, + [35947] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(2369), 1, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2371), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2405), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -68005,43 +68024,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35952] = 14, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35974] = 3, + ACTIONS(1560), 1, + anon_sym_LF, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(1562), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2135), 1, + anon_sym_PERCENT, 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(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, anon_sym_LT_LT, anon_sym_GT_GT, [36001] = 12, - ACTIONS(2238), 1, + ACTIONS(2145), 1, sym_comment, ACTIONS(2391), 1, anon_sym_PIPE_PIPE, @@ -68053,18 +68063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2433), 1, + ACTIONS(2431), 1, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, + ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -68073,55 +68083,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [36046] = 12, - ACTIONS(2238), 1, + [36046] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2178), 1, + anon_sym_SLASH, + ACTIONS(2180), 1, anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, + ACTIONS(2182), 1, anon_sym_AMP_AMP, - ACTIONS(2395), 1, + ACTIONS(2184), 1, anon_sym_PIPE, - ACTIONS(2397), 1, + ACTIONS(2186), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2435), 1, - anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2433), 1, + anon_sym_RPAREN, + ACTIONS(2174), 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, + ACTIONS(2176), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2190), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2192), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2194), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [36091] = 10, + ACTIONS(2196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36095] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1073), 1, - sym__type_declarator, - STATE(1384), 1, + STATE(1026), 1, + sym__declarator, + STATE(1403), 1, sym_ms_based_modifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68129,28 +68141,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - 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, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36134] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1051), 1, - sym__field_declarator, - STATE(1330), 1, + STATE(1035), 1, + sym__declarator, + STATE(1403), 1, sym_ms_based_modifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68158,28 +68170,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1090), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [36169] = 10, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36173] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2073), 1, anon_sym_STAR, - STATE(1043), 1, - sym__declarator, - STATE(1402), 1, + STATE(1053), 1, + sym__field_declarator, + STATE(1331), 1, sym_ms_based_modifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68187,28 +68199,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36208] = 10, + STATE(1096), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [36212] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, - sym_identifier, ACTIONS(2069), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(2071), 1, + anon_sym_LPAREN2, + ACTIONS(2073), 1, anon_sym_STAR, - STATE(1074), 1, - sym__type_declarator, - STATE(1384), 1, + STATE(1049), 1, + sym__field_declarator, + STATE(1331), 1, sym_ms_based_modifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68216,28 +68228,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - 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, + STATE(1096), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [36251] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1062), 1, - sym__type_declarator, - STATE(1384), 1, + STATE(1037), 1, + sym__declarator, + STATE(1403), 1, sym_ms_based_modifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68245,28 +68257,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - 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, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36290] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1018), 1, - sym__declarator, - STATE(1402), 1, + STATE(1066), 1, + sym__type_declarator, + STATE(1385), 1, sym_ms_based_modifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68274,28 +68286,28 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(1109), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [36329] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2073), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(1052), 1, sym__field_declarator, - STATE(1330), 1, + STATE(1331), 1, sym_ms_based_modifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68303,28 +68315,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1090), 5, + STATE(1096), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36364] = 10, + [36368] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1022), 1, - sym__declarator, - STATE(1402), 1, + STATE(1073), 1, + sym__type_declarator, + STATE(1385), 1, sym_ms_based_modifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68332,28 +68344,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36403] = 10, + STATE(1109), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [36407] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1053), 1, - sym__field_declarator, - STATE(1330), 1, + STATE(1062), 1, + sym__type_declarator, + STATE(1385), 1, sym_ms_based_modifier, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68361,317 +68373,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - 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, + STATE(1109), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [36446] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1385), 1, anon_sym_LPAREN2, - ACTIONS(1434), 1, + ACTIONS(1387), 1, anon_sym_STAR, - ACTIONS(1744), 1, - anon_sym_RPAREN, - ACTIONS(1750), 1, + ACTIONS(1748), 1, anon_sym_LBRACK, - STATE(1118), 1, + ACTIONS(2063), 1, + anon_sym_RPAREN, + STATE(1111), 1, sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(995), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2437), 4, + ACTIONS(2435), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36480] = 10, + [36484] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1385), 1, anon_sym_LPAREN2, - ACTIONS(1434), 1, + ACTIONS(1387), 1, anon_sym_STAR, - ACTIONS(1750), 1, + ACTIONS(1748), 1, anon_sym_LBRACK, - ACTIONS(2439), 1, + ACTIONS(2437), 1, anon_sym_RPAREN, - STATE(1133), 1, + STATE(1128), 1, sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(871), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2437), 4, + ACTIONS(2435), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36518] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1003), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(2443), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(2448), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(994), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2445), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2441), 6, - anon_sym___based, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [36550] = 10, + [36522] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1385), 1, anon_sym_LPAREN2, - ACTIONS(1434), 1, + ACTIONS(1387), 1, anon_sym_STAR, - ACTIONS(1750), 1, + ACTIONS(1748), 1, anon_sym_LBRACK, - ACTIONS(2065), 1, + ACTIONS(2439), 1, anon_sym_RPAREN, - STATE(1115), 1, + STATE(1133), 1, sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(871), 2, + STATE(993), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2437), 4, + ACTIONS(2435), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36588] = 10, + [36560] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1385), 1, anon_sym_LPAREN2, - ACTIONS(1434), 1, + ACTIONS(1387), 1, anon_sym_STAR, - ACTIONS(1750), 1, - anon_sym_LBRACK, - ACTIONS(2451), 1, + ACTIONS(1742), 1, anon_sym_RPAREN, - STATE(1120), 1, + ACTIONS(1748), 1, + anon_sym_LBRACK, + STATE(1115), 1, sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(871), 2, + STATE(992), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2437), 4, + ACTIONS(2435), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36626] = 10, + [36598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + STATE(1003), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(2443), 2, anon_sym_LPAREN2, - ACTIONS(1434), 1, anon_sym_STAR, - ACTIONS(1750), 1, + ACTIONS(2448), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(996), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2445), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2441), 6, + anon_sym___based, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [36630] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 1, + anon_sym_LPAREN2, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1748), 1, anon_sym_LBRACK, - ACTIONS(2453), 1, + ACTIONS(2451), 1, anon_sym_RPAREN, - STATE(1132), 1, + STATE(1136), 1, sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(993), 2, + STATE(998), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2437), 4, + ACTIONS(2435), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36664] = 10, + [36668] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1385), 1, anon_sym_LPAREN2, - ACTIONS(1434), 1, + ACTIONS(1387), 1, anon_sym_STAR, - ACTIONS(1750), 1, + ACTIONS(1748), 1, anon_sym_LBRACK, - ACTIONS(2455), 1, + ACTIONS(2453), 1, anon_sym_RPAREN, - STATE(1131), 1, + STATE(1134), 1, sym__abstract_declarator, - STATE(1140), 1, + STATE(1143), 1, sym_parameter_list, - STATE(996), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2437), 4, + ACTIONS(2435), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1138), 4, + STATE(1141), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36702] = 7, + [36706] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(2033), 1, sym_primitive_type, - ACTIONS(2457), 1, + ACTIONS(2455), 1, sym_identifier, - STATE(771), 1, + STATE(774), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2031), 4, + ACTIONS(2027), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2033), 4, + ACTIONS(2029), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(2035), 4, + ACTIONS(2031), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [36733] = 11, + [36737] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(2459), 1, + ACTIONS(2457), 1, anon_sym_SEMI, - ACTIONS(2461), 1, + ACTIONS(2459), 1, anon_sym_COLON, - STATE(1019), 1, + STATE(1021), 1, sym__field_declarator, - STATE(1327), 1, - sym_bitfield_clause, - STATE(1330), 1, + STATE(1331), 1, sym_ms_based_modifier, - STATE(1090), 5, + STATE(1342), 1, + sym_bitfield_clause, + STATE(1096), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36771] = 11, + [36775] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(2459), 1, anon_sym_COLON, - ACTIONS(2463), 1, + ACTIONS(2461), 1, anon_sym_SEMI, - STATE(1037), 1, + STATE(1018), 1, sym__field_declarator, - STATE(1330), 1, + STATE(1331), 1, sym_ms_based_modifier, - STATE(1344), 1, + STATE(1446), 1, sym_bitfield_clause, - STATE(1090), 5, + STATE(1096), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36809] = 11, + [36813] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(2459), 1, anon_sym_COLON, - ACTIONS(2465), 1, + ACTIONS(2463), 1, anon_sym_SEMI, - STATE(1027), 1, + STATE(1031), 1, sym__field_declarator, - STATE(1330), 1, - sym_ms_based_modifier, - STATE(1445), 1, + STATE(1329), 1, sym_bitfield_clause, - STATE(1090), 5, + STATE(1331), 1, + sym_ms_based_modifier, + STATE(1096), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36847] = 3, + [36851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 2, + ACTIONS(2467), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2467), 11, + ACTIONS(2465), 11, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -68683,13 +68695,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36868] = 3, + [36872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 2, + ACTIONS(2471), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2471), 11, + ACTIONS(2469), 11, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -68701,563 +68713,522 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36889] = 12, + [36893] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(319), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(1740), 1, + sym_identifier, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, - anon_sym_SEMI, - ACTIONS(2481), 1, - anon_sym_LBRACK, - ACTIONS(2483), 1, - anon_sym_EQ, - STATE(298), 1, - sym_compound_statement, - STATE(1039), 1, - sym_parameter_list, - STATE(1183), 1, - aux_sym_declaration_repeat1, - STATE(1052), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [36927] = 12, + ACTIONS(2067), 1, + anon_sym_STAR, + STATE(1071), 1, + sym__declarator, + STATE(1232), 1, + sym_init_declarator, + STATE(1403), 1, + sym_ms_based_modifier, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36925] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2477), 1, + anon_sym_SEMI, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(2483), 1, + ACTIONS(2481), 1, anon_sym_EQ, - ACTIONS(2485), 1, - anon_sym_SEMI, STATE(261), 1, sym_compound_statement, - STATE(1039), 1, + STATE(1044), 1, sym_parameter_list, - STATE(1204), 1, + STATE(1201), 1, aux_sym_declaration_repeat1, - STATE(1052), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [36965] = 9, - 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(1059), 1, - sym__declarator, - STATE(1232), 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, - [36997] = 12, + [36963] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(115), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(2483), 1, + ACTIONS(2481), 1, anon_sym_EQ, - ACTIONS(2487), 1, + ACTIONS(2483), 1, anon_sym_SEMI, - STATE(113), 1, + STATE(290), 1, sym_compound_statement, - STATE(1039), 1, + STATE(1044), 1, sym_parameter_list, - STATE(1180), 1, + STATE(1167), 1, aux_sym_declaration_repeat1, - STATE(1052), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37035] = 9, + [37001] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1014), 1, sym__declarator, - STATE(1184), 1, + STATE(1156), 1, sym_init_declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37067] = 9, + [37033] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1055), 1, + STATE(1057), 1, sym__declarator, - STATE(1174), 1, + STATE(1199), 1, sym_init_declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37099] = 9, + [37065] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1005), 1, + STATE(1007), 1, sym__declarator, - STATE(1212), 1, + STATE(1199), 1, sym_init_declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37131] = 9, + [37097] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1054), 1, + STATE(1050), 1, sym__declarator, - STATE(1207), 1, + STATE(1197), 1, sym_init_declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37163] = 9, + [37129] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1048), 1, + STATE(1046), 1, sym__declarator, - STATE(1212), 1, + STATE(1168), 1, sym_init_declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37195] = 9, + [37161] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1006), 1, + STATE(1016), 1, sym__declarator, - STATE(1207), 1, + STATE(1168), 1, sym_init_declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37227] = 12, + [37193] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(373), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(2483), 1, + ACTIONS(2481), 1, anon_sym_EQ, - ACTIONS(2489), 1, + ACTIONS(2485), 1, anon_sym_SEMI, - STATE(271), 1, + STATE(302), 1, sym_compound_statement, - STATE(1039), 1, + STATE(1044), 1, sym_parameter_list, STATE(1177), 1, aux_sym_declaration_repeat1, - STATE(1052), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37265] = 9, + [37231] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1008), 1, + STATE(1006), 1, sym__declarator, - STATE(1174), 1, + STATE(1197), 1, sym_init_declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37297] = 9, + [37263] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(115), 1, + anon_sym_LBRACE, + ACTIONS(2473), 1, + anon_sym_COMMA, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2479), 1, + anon_sym_LBRACK, + ACTIONS(2481), 1, + anon_sym_EQ, + ACTIONS(2487), 1, + anon_sym_SEMI, + STATE(113), 1, + sym_compound_statement, + STATE(1044), 1, + sym_parameter_list, + STATE(1180), 1, + aux_sym_declaration_repeat1, + STATE(1048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [37301] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1056), 1, + STATE(1054), 1, sym__declarator, - STATE(1184), 1, + STATE(1156), 1, sym_init_declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37329] = 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(2491), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [37356] = 11, + [37333] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2459), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2493), 1, + ACTIONS(2489), 1, anon_sym_COMMA, - ACTIONS(2495), 1, + ACTIONS(2491), 1, anon_sym_SEMI, - ACTIONS(2497), 1, + ACTIONS(2493), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1093), 1, sym_parameter_list, STATE(1112), 1, aux_sym_field_declaration_repeat1, - STATE(1280), 1, + STATE(1448), 1, sym_bitfield_clause, - STATE(1064), 2, + STATE(1072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37391] = 8, + [37368] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1070), 1, + STATE(1061), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37420] = 8, + [37397] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1071), 1, - sym__field_declarator, - STATE(1330), 1, + STATE(1084), 1, + sym__declarator, + STATE(1403), 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, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37426] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2459), 1, + anon_sym_COLON, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2489), 1, + anon_sym_COMMA, + ACTIONS(2493), 1, anon_sym_LBRACK, - STATE(1039), 1, + ACTIONS(2495), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_parameter_list, - STATE(1052), 2, + STATE(1113), 1, + aux_sym_field_declaration_repeat1, + STATE(1334), 1, + sym_bitfield_clause, + STATE(1072), 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, + [37461] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, - sym_identifier, ACTIONS(2069), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(2071), 1, + anon_sym_LPAREN2, + ACTIONS(2073), 1, anon_sym_STAR, - STATE(1060), 1, - sym__type_declarator, - STATE(1384), 1, + STATE(1074), 1, + sym__field_declarator, + STATE(1331), 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, - [37505] = 8, + STATE(1096), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [37490] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1086), 1, - sym__declarator, - STATE(1402), 1, + STATE(1063), 1, + sym__type_declarator, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1081), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [37534] = 8, + STATE(1109), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [37519] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1063), 1, + STATE(1065), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37563] = 8, + [37548] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1092), 1, - sym__declarator, - STATE(1402), 1, + STATE(1076), 1, + sym__type_declarator, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1081), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [37592] = 11, + STATE(1109), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [37577] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2461), 1, - anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2493), 1, - anon_sym_COMMA, - ACTIONS(2497), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(2501), 1, - anon_sym_SEMI, - STATE(1100), 1, + STATE(1044), 1, sym_parameter_list, - STATE(1111), 1, - aux_sym_field_declaration_repeat1, - STATE(1447), 1, - sym_bitfield_clause, - STATE(1064), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37627] = 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(1087), 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, - [37656] = 5, + ACTIONS(2497), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [37604] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, + ACTIONS(2501), 1, anon_sym___attribute__, - ACTIONS(2508), 1, + ACTIONS(2504), 1, anon_sym_LBRACK, - STATE(1029), 2, + STATE(1027), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2503), 7, + ACTIONS(2499), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69265,205 +69236,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37679] = 8, + [37627] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, STATE(1098), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37708] = 8, + [37656] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1066), 1, + STATE(1058), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37737] = 8, + [37685] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1065), 1, - sym__type_declarator, - STATE(1384), 1, + STATE(1088), 1, + sym__declarator, + STATE(1403), 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, - [37766] = 5, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37714] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, - anon_sym___attribute__, - ACTIONS(2514), 1, - anon_sym_LBRACK, - STATE(1029), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2510), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2459), 1, + anon_sym_COLON, + ACTIONS(2475), 1, anon_sym_LPAREN2, + ACTIONS(2489), 1, + anon_sym_COMMA, + ACTIONS(2493), 1, + anon_sym_LBRACK, + ACTIONS(2506), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [37789] = 8, + STATE(1093), 1, + sym_parameter_list, + STATE(1118), 1, + aux_sym_field_declaration_repeat1, + STATE(1280), 1, + sym_bitfield_clause, + STATE(1072), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [37749] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(1742), 1, + ACTIONS(1740), 1, sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2067), 1, anon_sym_STAR, - STATE(1084), 1, + STATE(1085), 1, sym__declarator, - STATE(1402), 1, + STATE(1403), 1, sym_ms_based_modifier, - STATE(1081), 5, + STATE(1080), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37818] = 8, + [37778] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1072), 1, + STATE(1086), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37847] = 8, + [37807] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2479), 1, + anon_sym_LBRACK, + STATE(1044), 1, + sym_parameter_list, + STATE(1048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2508), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [37834] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2479), 1, + anon_sym_LBRACK, + STATE(1044), 1, + sym_parameter_list, + STATE(1048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2510), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [37861] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1058), 1, + STATE(1059), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37876] = 11, - ACTIONS(3), 1, - sym_comment, - 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(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, + [37890] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - STATE(1039), 1, + STATE(1044), 1, sym_parameter_list, - STATE(1052), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2518), 5, + ACTIONS(2512), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [37938] = 5, + [37917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, + ACTIONS(2516), 1, anon_sym___attribute__, - ACTIONS(2522), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - STATE(1033), 2, + STATE(1027), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2520), 7, + ACTIONS(2514), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69471,118 +69464,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37961] = 8, + [37940] = 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(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(1194), 1, - anon_sym___based, - ACTIONS(2067), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1088), 1, + STATE(1070), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [38019] = 8, + [37969] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2077), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2079), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(2073), 1, anon_sym_STAR, - STATE(1099), 1, + STATE(1092), 1, sym__field_declarator, - STATE(1330), 1, + STATE(1331), 1, sym_ms_based_modifier, - STATE(1090), 5, + STATE(1096), 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(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(2524), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [38075] = 8, + [37998] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, anon_sym___based, - ACTIONS(2067), 1, + ACTIONS(2075), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(2079), 1, anon_sym_STAR, - STATE(1076), 1, + STATE(1067), 1, sym__type_declarator, - STATE(1384), 1, + STATE(1385), 1, sym_ms_based_modifier, - STATE(1104), 5, + STATE(1109), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [38104] = 5, + [38027] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(2526), 1, + ACTIONS(2520), 1, anon_sym_LBRACK_LBRACK, - STATE(1045), 2, + STATE(1042), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(1686), 7, @@ -69593,68 +69545,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [38127] = 3, + [38050] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(1740), 1, + sym_identifier, + ACTIONS(2065), 1, + anon_sym_LPAREN2, + ACTIONS(2067), 1, + anon_sym_STAR, + STATE(1091), 1, + sym__declarator, + STATE(1403), 1, + sym_ms_based_modifier, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [38079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 1, + ACTIONS(2516), 1, + anon_sym___attribute__, + ACTIONS(2525), 1, anon_sym_LBRACK, - ACTIONS(2529), 9, + STATE(1038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2523), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [38145] = 7, + [38102] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(1194), 1, + anon_sym___based, + ACTIONS(1740), 1, + sym_identifier, + ACTIONS(2065), 1, anon_sym_LPAREN2, - ACTIONS(2497), 1, - anon_sym_LBRACK, - STATE(1100), 1, - sym_parameter_list, - STATE(1064), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2533), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [38171] = 10, + ACTIONS(2067), 1, + anon_sym_STAR, + STATE(1082), 1, + sym__declarator, + STATE(1403), 1, + sym_ms_based_modifier, + STATE(1080), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [38131] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, ACTIONS(2479), 1, - anon_sym_SEMI, - ACTIONS(2481), 1, anon_sym_LBRACK, - ACTIONS(2483), 1, + ACTIONS(2481), 1, anon_sym_EQ, - STATE(1039), 1, + ACTIONS(2487), 1, + anon_sym_SEMI, + STATE(1044), 1, sym_parameter_list, - STATE(1183), 1, + STATE(1180), 1, aux_sym_declaration_repeat1, - STATE(1052), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38203] = 3, + [38163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 1, + ACTIONS(2529), 1, anon_sym_LBRACK, - ACTIONS(2535), 9, + ACTIONS(2527), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69664,533 +69642,550 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [38221] = 3, + [38181] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2541), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2533), 1, anon_sym_LBRACK, - ACTIONS(2539), 9, + STATE(1042), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2531), 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, - [38239] = 7, + [38203] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2497), 1, + ACTIONS(2493), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1093), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2543), 4, + ACTIONS(2535), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38265] = 5, + [38229] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2473), 1, + anon_sym_COMMA, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2477), 1, + anon_sym_SEMI, + ACTIONS(2479), 1, + anon_sym_LBRACK, + ACTIONS(2481), 1, + anon_sym_EQ, + STATE(1044), 1, + sym_parameter_list, + STATE(1201), 1, + aux_sym_declaration_repeat1, + STATE(1048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38261] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2547), 1, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2493), 1, anon_sym_LBRACK, - STATE(1045), 2, + STATE(1093), 1, + sym_parameter_list, + STATE(1072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2545), 6, + ACTIONS(2537), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_COLON, [38287] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2497), 1, + ACTIONS(2493), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1093), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2549), 4, + ACTIONS(2539), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38313] = 10, + [38313] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2493), 1, + anon_sym_LBRACK, + STATE(1093), 1, + sym_parameter_list, + STATE(1072), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2541), 4, anon_sym_COMMA, - ACTIONS(2477), 1, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [38339] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2473), 1, + anon_sym_COMMA, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(2483), 1, + ACTIONS(2481), 1, anon_sym_EQ, ACTIONS(2485), 1, anon_sym_SEMI, - STATE(1039), 1, + STATE(1044), 1, sym_parameter_list, - STATE(1204), 1, + STATE(1177), 1, aux_sym_declaration_repeat1, - STATE(1052), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38345] = 10, + [38371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2545), 1, + anon_sym_LBRACK, + ACTIONS(2543), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [38389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2549), 1, + anon_sym_LBRACK, + ACTIONS(2547), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [38407] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(2483), 1, + ACTIONS(2481), 1, anon_sym_EQ, - ACTIONS(2487), 1, + ACTIONS(2483), 1, anon_sym_SEMI, - STATE(1039), 1, + STATE(1044), 1, sym_parameter_list, - STATE(1180), 1, + STATE(1167), 1, aux_sym_declaration_repeat1, - STATE(1052), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38377] = 10, + [38439] = 9, ACTIONS(3), 1, sym_comment, 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(2483), 1, - anon_sym_EQ, - ACTIONS(2489), 1, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(2553), 1, anon_sym_SEMI, - STATE(1039), 1, + ACTIONS(2555), 1, + anon_sym_LBRACK, + STATE(1101), 1, sym_parameter_list, - STATE(1177), 1, - aux_sym_declaration_repeat1, - STATE(1052), 2, + STATE(1211), 1, + aux_sym_type_definition_repeat2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38409] = 7, + [38468] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2497), 1, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(2555), 1, anon_sym_LBRACK, - STATE(1100), 1, + ACTIONS(2557), 1, + anon_sym_SEMI, + STATE(1101), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1179), 1, + aux_sym_type_definition_repeat2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2551), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [38435] = 9, + [38497] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 1, + sym_identifier, + ACTIONS(2563), 1, + sym_system_lib_string, + STATE(1391), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2561), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [38518] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2553), 1, + ACTIONS(2551), 1, anon_sym_COMMA, ACTIONS(2555), 1, - anon_sym_SEMI, - ACTIONS(2557), 1, anon_sym_LBRACK, - STATE(1109), 1, + ACTIONS(2565), 1, + anon_sym_SEMI, + STATE(1101), 1, sym_parameter_list, - STATE(1186), 1, + STATE(1195), 1, aux_sym_type_definition_repeat2, - STATE(1079), 2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38464] = 8, + [38547] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2555), 1, anon_sym_LBRACK, - ACTIONS(2483), 1, - anon_sym_EQ, - STATE(1039), 1, + STATE(1101), 1, sym_parameter_list, - ACTIONS(2559), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1052), 2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38491] = 9, + ACTIONS(2567), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [38572] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2553), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - ACTIONS(2557), 1, + ACTIONS(2555), 1, anon_sym_LBRACK, - ACTIONS(2561), 1, + ACTIONS(2569), 1, anon_sym_SEMI, - STATE(1109), 1, + STATE(1101), 1, sym_parameter_list, - STATE(1168), 1, + STATE(1193), 1, aux_sym_type_definition_repeat2, - STATE(1079), 2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38520] = 5, + [38601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(2571), 1, sym_identifier, - ACTIONS(2567), 1, + ACTIONS(2573), 1, sym_system_lib_string, - STATE(1429), 2, + STATE(1379), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2565), 5, + ACTIONS(2561), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [38541] = 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, - STATE(1079), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2569), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [38566] = 9, + [38622] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2553), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - ACTIONS(2557), 1, + ACTIONS(2555), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2575), 1, anon_sym_SEMI, - STATE(1109), 1, + STATE(1101), 1, sym_parameter_list, - STATE(1173), 1, + STATE(1188), 1, aux_sym_type_definition_repeat2, - STATE(1079), 2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38595] = 5, + [38651] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2575), 1, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2555), 1, anon_sym_LBRACK, - STATE(1045), 2, + STATE(1101), 1, + sym_parameter_list, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2573), 5, + ACTIONS(2577), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - [38616] = 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(2577), 1, anon_sym_SEMI, - STATE(1109), 1, - sym_parameter_list, - STATE(1196), 1, - aux_sym_type_definition_repeat2, - STATE(1079), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [38645] = 9, + [38676] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2553), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - ACTIONS(2557), 1, + ACTIONS(2555), 1, anon_sym_LBRACK, ACTIONS(2579), 1, anon_sym_SEMI, - STATE(1109), 1, + STATE(1101), 1, sym_parameter_list, - STATE(1158), 1, + STATE(1189), 1, aux_sym_type_definition_repeat2, - STATE(1079), 2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38674] = 5, + [38705] = 5, ACTIONS(3), 1, sym_comment, 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(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(2589), 1, - sym_identifier, - ACTIONS(2591), 1, - sym_system_lib_string, - STATE(1379), 2, + STATE(1287), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2565), 5, + ACTIONS(2561), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [38737] = 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(2593), 1, - anon_sym_SEMI, - STATE(1109), 1, - sym_parameter_list, - STATE(1195), 1, - aux_sym_type_definition_repeat2, - STATE(1079), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [38766] = 7, + [38726] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2497), 1, + ACTIONS(2555), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1101), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2595), 3, + ACTIONS(2585), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON, - [38791] = 9, + [38751] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2553), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - ACTIONS(2557), 1, + ACTIONS(2555), 1, anon_sym_LBRACK, - ACTIONS(2597), 1, + ACTIONS(2587), 1, anon_sym_SEMI, - STATE(1109), 1, + STATE(1101), 1, sym_parameter_list, - STATE(1165), 1, + STATE(1202), 1, aux_sym_type_definition_repeat2, - STATE(1079), 2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38820] = 7, + [38780] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2557), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - STATE(1109), 1, + ACTIONS(2481), 1, + anon_sym_EQ, + STATE(1044), 1, sym_parameter_list, - STATE(1079), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2599), 3, + ACTIONS(2589), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - [38845] = 7, + STATE(1048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38807] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, - anon_sym_LPAREN2, - ACTIONS(2557), 1, + ACTIONS(2593), 1, anon_sym_LBRACK, - STATE(1109), 1, - sym_parameter_list, - STATE(1079), 2, + STATE(1042), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2601), 3, + ACTIONS(2591), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [38870] = 7, + anon_sym_COLON, + [38828] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2557), 1, + ACTIONS(2555), 1, anon_sym_LBRACK, - STATE(1109), 1, + STATE(1101), 1, sym_parameter_list, - STATE(1079), 2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2603), 3, + ACTIONS(2595), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [38895] = 9, + [38853] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2553), 1, - anon_sym_COMMA, - ACTIONS(2557), 1, + ACTIONS(2493), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_SEMI, - STATE(1109), 1, + STATE(1093), 1, sym_parameter_list, - STATE(1156), 1, - aux_sym_type_definition_repeat2, - STATE(1079), 2, + STATE(1072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38924] = 7, + ACTIONS(2597), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [38878] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym_identifier, + ACTIONS(2601), 1, + sym_system_lib_string, + STATE(1430), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2561), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [38899] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(2555), 1, anon_sym_LBRACK, - STATE(1039), 1, + ACTIONS(2603), 1, + anon_sym_SEMI, + STATE(1101), 1, sym_parameter_list, - ACTIONS(2607), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1052), 2, + STATE(1186), 1, + aux_sym_type_definition_repeat2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38948] = 3, + [38928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, + ACTIONS(2607), 1, anon_sym_LBRACK, - ACTIONS(2609), 7, + ACTIONS(2605), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70198,27 +70193,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [38964] = 5, + [38944] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2615), 1, + ACTIONS(2611), 1, anon_sym_LBRACK, - STATE(1045), 2, + STATE(1042), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2613), 4, + ACTIONS(2609), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - [38984] = 3, + [38964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(2615), 1, anon_sym_LBRACK, - ACTIONS(2617), 7, + ACTIONS(2613), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70226,12 +70221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39000] = 3, + [38980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(2619), 1, anon_sym_LBRACK, - ACTIONS(2621), 7, + ACTIONS(2617), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70239,12 +70234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39016] = 3, + [38996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2627), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2625), 7, + ACTIONS(2621), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70252,12 +70247,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39032] = 3, + [39012] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(373), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2479), 1, + anon_sym_LBRACK, + STATE(289), 1, + sym_compound_statement, + STATE(1044), 1, + sym_parameter_list, + STATE(1048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [39038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2631), 1, + ACTIONS(2627), 1, anon_sym_LBRACK, - ACTIONS(2629), 7, + ACTIONS(2625), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70265,101 +70278,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39048] = 8, + [39054] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(115), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, STATE(106), 1, sym_compound_statement, - STATE(1039), 1, + STATE(1044), 1, sym_parameter_list, - STATE(1052), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39074] = 8, + [39080] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(319), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - STATE(299), 1, + STATE(247), 1, sym_compound_statement, - STATE(1039), 1, + STATE(1044), 1, sym_parameter_list, - STATE(1052), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39100] = 8, + [39106] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(373), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2555), 1, anon_sym_LBRACK, - STATE(289), 1, - sym_compound_statement, - STATE(1039), 1, + STATE(1101), 1, sym_parameter_list, - STATE(1052), 2, + ACTIONS(2629), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39126] = 8, + [39130] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - STATE(248), 1, - sym_compound_statement, - STATE(1039), 1, + STATE(1044), 1, sym_parameter_list, - STATE(1052), 2, + ACTIONS(2631), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39152] = 7, + [39154] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(319), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2557), 1, + ACTIONS(2479), 1, anon_sym_LBRACK, - STATE(1109), 1, + STATE(299), 1, + sym_compound_statement, + STATE(1044), 1, sym_parameter_list, - ACTIONS(2633), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1079), 2, + STATE(1048), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39176] = 3, + [39180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, + ACTIONS(2635), 1, anon_sym_LBRACK, - ACTIONS(2635), 7, + ACTIONS(2633), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70367,1381 +70379,1381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39192] = 3, + [39196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 1, + ACTIONS(2639), 1, anon_sym_LBRACK, - ACTIONS(2639), 6, + ACTIONS(2637), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39207] = 3, + [39211] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(2643), 6, - anon_sym_COMMA, + ACTIONS(2641), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [39222] = 7, + STATE(1044), 1, + sym_parameter_list, + STATE(1048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [39234] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2481), 1, + ACTIONS(2493), 1, anon_sym_LBRACK, - ACTIONS(2647), 1, + ACTIONS(2643), 1, anon_sym_RPAREN, - STATE(1039), 1, + STATE(1093), 1, sym_parameter_list, - STATE(1052), 2, + STATE(1072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39245] = 3, + [39257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 1, + ACTIONS(2647), 1, anon_sym_LBRACK, - ACTIONS(2649), 6, + ACTIONS(2645), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39260] = 3, + [39272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2651), 1, anon_sym_LBRACK, - ACTIONS(2653), 6, + ACTIONS(2649), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39275] = 3, + [39287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - ACTIONS(2657), 6, + ACTIONS(2653), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39290] = 3, + [39302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(2659), 1, anon_sym_LBRACK, - ACTIONS(2661), 6, + ACTIONS(2657), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39305] = 3, + [39317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2667), 1, + ACTIONS(2663), 1, anon_sym_LBRACK, - ACTIONS(2665), 6, + ACTIONS(2661), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39320] = 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, - ACTIONS(2669), 1, - anon_sym_RPAREN, - STATE(1109), 1, - sym_parameter_list, - STATE(1079), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39343] = 7, + [39332] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2497), 1, + ACTIONS(2555), 1, anon_sym_LBRACK, - ACTIONS(2671), 1, + ACTIONS(2665), 1, anon_sym_RPAREN, - STATE(1100), 1, + STATE(1101), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39366] = 3, + [39355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2673), 6, + ACTIONS(2667), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, 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, + [39370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2687), 1, + ACTIONS(2673), 1, anon_sym_LBRACK, - ACTIONS(2685), 5, + ACTIONS(2671), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39413] = 3, + anon_sym_COLON, + [39385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 1, + ACTIONS(2677), 1, anon_sym_LBRACK, - ACTIONS(2689), 5, + ACTIONS(2675), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39427] = 3, + [39399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2695), 1, + ACTIONS(2681), 1, anon_sym_LBRACK, - ACTIONS(2693), 5, + ACTIONS(2679), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39441] = 3, + [39413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, + ACTIONS(2685), 1, anon_sym_LBRACK, - ACTIONS(2697), 5, + ACTIONS(2683), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39455] = 3, + [39427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 1, + ACTIONS(2689), 1, anon_sym_LBRACK, - ACTIONS(2701), 5, + ACTIONS(2687), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39469] = 5, + [39441] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1274), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2691), 1, + anon_sym_EQ, + ACTIONS(2693), 1, + anon_sym_DOT, + STATE(1106), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [39459] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 1, + anon_sym_LBRACK, + ACTIONS(2698), 1, anon_sym_EQ, - ACTIONS(2707), 1, + ACTIONS(2700), 1, anon_sym_DOT, - STATE(1101), 3, + STATE(1106), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [39487] = 3, + [39477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 1, + ACTIONS(2705), 1, anon_sym_LBRACK, - ACTIONS(2709), 5, + ACTIONS(2703), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39501] = 3, + [39491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2713), 5, + ACTIONS(2707), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39515] = 3, + [39505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - ACTIONS(2717), 5, + ACTIONS(2711), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39529] = 6, + [39519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, - anon_sym_COLON, - ACTIONS(2493), 1, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2715), 5, anon_sym_COMMA, - ACTIONS(2721), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(1152), 1, - aux_sym_field_declaration_repeat1, - STATE(1420), 1, - sym_bitfield_clause, - [39548] = 6, + anon_sym_LBRACK_LBRACK, + [39533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2721), 1, + anon_sym_LBRACK, + STATE(1137), 1, + sym_parameter_list, + ACTIONS(2719), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [39550] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2459), 1, anon_sym_COLON, - ACTIONS(2493), 1, + ACTIONS(2489), 1, anon_sym_COMMA, ACTIONS(2723), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1129), 1, aux_sym_field_declaration_repeat1, - STATE(1331), 1, + STATE(1421), 1, sym_bitfield_clause, - [39567] = 6, + [39569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, + ACTIONS(2459), 1, anon_sym_COLON, - ACTIONS(2493), 1, + ACTIONS(2489), 1, anon_sym_COMMA, ACTIONS(2725), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1129), 1, aux_sym_field_declaration_repeat1, - STATE(1322), 1, + STATE(1323), 1, sym_bitfield_clause, - [39586] = 5, + [39588] = 6, 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(37), 1, + anon_sym___declspec, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2727), 1, + sym_identifier, + STATE(879), 1, + sym_field_declaration_list, + STATE(1204), 1, + sym_ms_declspec_modifier, + [39607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2733), 1, + ACTIONS(2721), 1, anon_sym_LBRACK, - STATE(1136), 1, + STATE(1137), 1, sym_parameter_list, - ACTIONS(2731), 2, + ACTIONS(2729), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39620] = 6, + [39624] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2101), 1, + ACTIONS(2093), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, + ACTIONS(2731), 1, sym_identifier, - STATE(876), 1, + STATE(878), 1, sym_field_declaration_list, - STATE(1198), 1, + STATE(1170), 1, sym_ms_declspec_modifier, - [39639] = 6, + [39643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2101), 1, - anon_sym_LBRACE, - ACTIONS(2737), 1, - sym_identifier, - STATE(893), 1, - sym_field_declaration_list, - STATE(1192), 1, - sym_ms_declspec_modifier, - [39658] = 5, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(2735), 1, + anon_sym_COLON_COLON, + STATE(1245), 1, + sym_argument_list, + ACTIONS(2733), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [39660] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, - anon_sym_LPAREN2, - ACTIONS(2733), 1, - anon_sym_LBRACK, - STATE(1136), 1, - sym_parameter_list, - ACTIONS(2739), 2, + ACTIONS(2459), 1, + anon_sym_COLON, + ACTIONS(2489), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [39675] = 5, + ACTIONS(2737), 1, + anon_sym_SEMI, + STATE(1129), 1, + aux_sym_field_declaration_repeat1, + STATE(1367), 1, + sym_bitfield_clause, + [39679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2733), 1, + ACTIONS(2721), 1, anon_sym_LBRACK, - STATE(1136), 1, + STATE(1137), 1, sym_parameter_list, - ACTIONS(2607), 2, + ACTIONS(2631), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39692] = 5, - ACTIONS(3), 1, + [39696] = 5, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2477), 1, - anon_sym_LPAREN2, - ACTIONS(2733), 1, - anon_sym_LBRACK, + ACTIONS(2739), 1, + anon_sym_LF, ACTIONS(2741), 1, - anon_sym_RPAREN, - STATE(1136), 1, - sym_parameter_list, - [39708] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2477), 1, - anon_sym_LPAREN2, - ACTIONS(2733), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2743), 1, - anon_sym_RPAREN, - STATE(1136), 1, - sym_parameter_list, - [39724] = 2, + sym_preproc_arg, + STATE(1228), 1, + sym_preproc_params, + [39712] = 5, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2741), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_LF, + ACTIONS(2747), 1, + sym_preproc_arg, + STATE(1240), 1, + sym_preproc_params, + [39728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 4, + ACTIONS(2749), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39734] = 2, + [39738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 4, + ACTIONS(2751), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39744] = 5, - ACTIONS(2238), 1, + [39748] = 5, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2749), 1, - anon_sym_DQUOTE, - ACTIONS(2751), 1, - aux_sym_string_literal_token1, + ACTIONS(2741), 1, + anon_sym_LPAREN, ACTIONS(2753), 1, - sym_escape_sequence, - STATE(1149), 1, - aux_sym_string_literal_repeat1, - [39760] = 2, + anon_sym_LF, + ACTIONS(2755), 1, + sym_preproc_arg, + STATE(1269), 1, + sym_preproc_params, + [39764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 4, + ACTIONS(2757), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39770] = 2, + [39774] = 5, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2741), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, + anon_sym_LF, + ACTIONS(2761), 1, + sym_preproc_arg, + STATE(1266), 1, + sym_preproc_params, + [39790] = 5, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2763), 1, + anon_sym_DQUOTE, + ACTIONS(2765), 1, + aux_sym_string_literal_token1, + ACTIONS(2767), 1, + sym_escape_sequence, + STATE(1152), 1, + aux_sym_string_literal_repeat1, + [39806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2475), 1, anon_sym_LPAREN2, + ACTIONS(2721), 1, anon_sym_LBRACK, - [39780] = 5, + ACTIONS(2769), 1, + anon_sym_RPAREN, + STATE(1137), 1, + sym_parameter_list, + [39822] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, - sym_identifier, - ACTIONS(2761), 1, + ACTIONS(2771), 1, anon_sym_COMMA, - ACTIONS(2763), 1, - anon_sym_RBRACE, - STATE(1170), 1, - sym_enumerator, - [39796] = 4, + STATE(1129), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(2774), 2, + anon_sym_SEMI, + anon_sym_COLON, + [39836] = 5, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2765), 1, + aux_sym_string_literal_token1, + ACTIONS(2767), 1, + sym_escape_sequence, + ACTIONS(2776), 1, + anon_sym_DQUOTE, + STATE(1152), 1, + aux_sym_string_literal_repeat1, + [39852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, STATE(1250), 1, sym_argument_list, - ACTIONS(2765), 2, + ACTIONS(2778), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [39810] = 5, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(2767), 1, - anon_sym_LF, - ACTIONS(2769), 1, - anon_sym_LPAREN, - ACTIONS(2771), 1, - sym_preproc_arg, - STATE(1240), 1, - sym_preproc_params, - [39826] = 5, - ACTIONS(2238), 1, + [39866] = 5, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2769), 1, - anon_sym_LPAREN, - ACTIONS(2773), 1, - anon_sym_LF, - ACTIONS(2775), 1, - sym_preproc_arg, - STATE(1229), 1, - sym_preproc_params, - [39842] = 5, + ACTIONS(2780), 1, + anon_sym_DQUOTE, + ACTIONS(2782), 1, + aux_sym_string_literal_token1, + ACTIONS(2784), 1, + sym_escape_sequence, + STATE(1127), 1, + aux_sym_string_literal_repeat1, + [39882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2733), 1, + ACTIONS(2721), 1, anon_sym_LBRACK, - ACTIONS(2777), 1, + ACTIONS(2786), 1, anon_sym_RPAREN, - STATE(1136), 1, + STATE(1137), 1, sym_parameter_list, - [39858] = 5, + [39898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, + ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2733), 1, + ACTIONS(2721), 1, anon_sym_LBRACK, - ACTIONS(2779), 1, + ACTIONS(2788), 1, anon_sym_RPAREN, - STATE(1136), 1, + STATE(1137), 1, sym_parameter_list, - [39874] = 5, + [39914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, + ACTIONS(2790), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2733), 1, anon_sym_LBRACK, - ACTIONS(2781), 1, + [39924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2721), 1, + anon_sym_LBRACK, + ACTIONS(2792), 1, anon_sym_RPAREN, - STATE(1136), 1, + STATE(1137), 1, sym_parameter_list, - [39890] = 5, - ACTIONS(2238), 1, + [39940] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, + ACTIONS(2794), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [39950] = 5, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2741), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(2796), 1, anon_sym_LF, - ACTIONS(2785), 1, + ACTIONS(2798), 1, sym_preproc_arg, - STATE(1218), 1, + STATE(1258), 1, sym_preproc_params, - [39906] = 2, + [39966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 4, + ACTIONS(2800), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39916] = 2, + [39976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 4, + ACTIONS(2802), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39926] = 5, - ACTIONS(2238), 1, - sym_comment, - 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, + [39986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 4, + ACTIONS(2804), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39952] = 5, - ACTIONS(2238), 1, + [39996] = 5, + ACTIONS(2145), 1, sym_comment, - 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(2741), 1, + anon_sym_LPAREN, + ACTIONS(2806), 1, + anon_sym_LF, + ACTIONS(2808), 1, + sym_preproc_arg, + STATE(1254), 1, + sym_preproc_params, + [40012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 4, + ACTIONS(2810), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39978] = 5, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(2799), 1, - anon_sym_DQUOTE, - ACTIONS(2801), 1, - aux_sym_string_literal_token1, - ACTIONS(2803), 1, - sym_escape_sequence, - STATE(1137), 1, - aux_sym_string_literal_repeat1, - [39994] = 2, + [40022] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 4, + ACTIONS(2812), 1, + sym_identifier, + ACTIONS(2814), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [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, + ACTIONS(2816), 1, + anon_sym_RBRACE, + STATE(1162), 1, + sym_enumerator, + [40038] = 5, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2769), 1, + ACTIONS(2741), 1, anon_sym_LPAREN, - ACTIONS(2813), 1, + ACTIONS(2818), 1, anon_sym_LF, - ACTIONS(2815), 1, + ACTIONS(2820), 1, sym_preproc_arg, - STATE(1262), 1, + STATE(1263), 1, sym_preproc_params, - [40036] = 5, - ACTIONS(2238), 1, + [40054] = 5, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2822), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2824), 1, aux_sym_string_literal_token1, - ACTIONS(2821), 1, + ACTIONS(2826), 1, sym_escape_sequence, - STATE(1124), 1, + STATE(1153), 1, aux_sym_string_literal_repeat1, - [40052] = 5, - ACTIONS(2238), 1, - sym_comment, - 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, + [40070] = 5, + ACTIONS(2145), 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(2828), 1, + anon_sym_DQUOTE, + ACTIONS(2830), 1, + aux_sym_string_literal_token1, + ACTIONS(2832), 1, + sym_escape_sequence, + STATE(1130), 1, + aux_sym_string_literal_repeat1, + [40086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 4, + ACTIONS(2834), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40094] = 5, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(2835), 1, - aux_sym_string_literal_token1, - ACTIONS(2838), 1, - sym_escape_sequence, - STATE(1149), 1, - aux_sym_string_literal_repeat1, - [40110] = 5, - ACTIONS(2238), 1, + [40096] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, - anon_sym_LPAREN, - ACTIONS(2841), 1, - anon_sym_LF, - ACTIONS(2843), 1, - sym_preproc_arg, - STATE(1214), 1, - sym_preproc_params, - [40126] = 2, + ACTIONS(2475), 1, + anon_sym_LPAREN2, + ACTIONS(2721), 1, + anon_sym_LBRACK, + ACTIONS(2836), 1, + anon_sym_RPAREN, + STATE(1137), 1, + sym_parameter_list, + [40112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2845), 4, + ACTIONS(2838), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40136] = 4, + [40122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(2840), 4, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [40132] = 5, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2842), 1, + anon_sym_DQUOTE, + ACTIONS(2844), 1, + aux_sym_string_literal_token1, + ACTIONS(2847), 1, + sym_escape_sequence, STATE(1152), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(2850), 2, - anon_sym_SEMI, - anon_sym_COLON, - [40150] = 2, + aux_sym_string_literal_repeat1, + [40148] = 5, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2765), 1, + aux_sym_string_literal_token1, + ACTIONS(2767), 1, + sym_escape_sequence, + ACTIONS(2850), 1, + anon_sym_DQUOTE, + STATE(1152), 1, + aux_sym_string_literal_repeat1, + [40164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 4, + ACTIONS(2852), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [40160] = 4, + ACTIONS(2855), 1, + anon_sym_RBRACE, + STATE(1154), 1, + aux_sym_enumerator_list_repeat1, + [40177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(1843), 1, anon_sym_COMMA, - ACTIONS(2854), 1, + ACTIONS(2857), 1, anon_sym_RPAREN, - STATE(1188), 1, - aux_sym_preproc_argument_list_repeat1, - [40173] = 4, + STATE(1157), 1, + aux_sym_argument_list_repeat1, + [40190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2856), 1, + ACTIONS(2859), 1, anon_sym_SEMI, - STATE(1208), 1, + STATE(1178), 1, aux_sym_declaration_repeat1, - [40186] = 4, + [40203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(1931), 1, + anon_sym_RPAREN, + ACTIONS(2861), 1, anon_sym_COMMA, - ACTIONS(2858), 1, - anon_sym_SEMI, - STATE(1164), 1, - aux_sym_type_definition_repeat2, - [40199] = 4, + STATE(1157), 1, + aux_sym_argument_list_repeat1, + [40216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 1, - anon_sym_LBRACE, - ACTIONS(2860), 1, - sym_identifier, - STATE(896), 1, - sym_enumerator_list, - [40212] = 4, + ACTIONS(2866), 1, + anon_sym_EQ, + ACTIONS(2864), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [40227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(2862), 1, - anon_sym_SEMI, - STATE(1164), 1, - aux_sym_type_definition_repeat2, - [40225] = 4, + ACTIONS(2870), 1, + anon_sym_RBRACK_RBRACK, + STATE(1176), 1, + aux_sym_attribute_declaration_repeat1, + [40240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, + ACTIONS(2295), 1, + anon_sym_RPAREN, + ACTIONS(2872), 1, + anon_sym_COMMA, + STATE(1160), 1, + aux_sym_preproc_argument_list_repeat1, + [40253] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2875), 1, + anon_sym_COMMA, + ACTIONS(2878), 1, + anon_sym_RPAREN, + STATE(1161), 1, + aux_sym_preproc_params_repeat1, + [40266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2880), 1, anon_sym_COMMA, - ACTIONS(1823), 1, + ACTIONS(2882), 1, anon_sym_RBRACE, - STATE(1206), 1, - aux_sym_initializer_list_repeat1, - [40238] = 4, + STATE(1200), 1, + aux_sym_enumerator_list_repeat1, + [40279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(2866), 1, + ACTIONS(2884), 1, anon_sym_RBRACK_RBRACK, - STATE(1199), 1, + STATE(1174), 1, aux_sym_attribute_declaration_repeat1, - [40251] = 4, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, + [40292] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - anon_sym_LF, - STATE(958), 1, - sym_preproc_argument_list, - [40264] = 4, - ACTIONS(2236), 1, + ACTIONS(2473), 1, + anon_sym_COMMA, + ACTIONS(2886), 1, + anon_sym_SEMI, + STATE(1205), 1, + aux_sym_declaration_repeat1, + [40305] = 4, + ACTIONS(2143), 1, anon_sym_LPAREN2, - ACTIONS(2238), 1, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(2888), 1, anon_sym_LF, - STATE(958), 1, + STATE(957), 1, sym_preproc_argument_list, - [40277] = 4, + [40318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, + ACTIONS(2890), 1, anon_sym_COMMA, - ACTIONS(2872), 1, + ACTIONS(2892), 1, anon_sym_RPAREN, - STATE(1185), 1, - aux_sym_argument_list_repeat1, - [40290] = 4, + STATE(1210), 1, + aux_sym_preproc_params_repeat1, + [40331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2877), 1, + ACTIONS(2894), 1, anon_sym_SEMI, - STATE(1164), 1, - aux_sym_type_definition_repeat2, - [40303] = 4, + STATE(1205), 1, + aux_sym_declaration_repeat1, + [40344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2879), 1, + ACTIONS(2896), 1, anon_sym_SEMI, - STATE(1164), 1, - aux_sym_type_definition_repeat2, - [40316] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_COMMA, - ACTIONS(2881), 1, - anon_sym_RBRACK_RBRACK, - STATE(1179), 1, - aux_sym_attribute_declaration_repeat1, - [40329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 1, - anon_sym_EQ, - ACTIONS(2883), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [40340] = 4, + STATE(1181), 1, + aux_sym_declaration_repeat1, + [40357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2898), 1, anon_sym_COMMA, - ACTIONS(2887), 1, - anon_sym_SEMI, - STATE(1164), 1, - aux_sym_type_definition_repeat2, - [40353] = 4, + ACTIONS(2901), 1, + anon_sym_RPAREN, + STATE(1169), 1, + aux_sym_parameter_list_repeat1, + [40370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2903), 1, sym_identifier, - ACTIONS(2889), 1, - anon_sym_RBRACE, - STATE(1249), 1, - sym_enumerator, - [40366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 1, - anon_sym_COMMA, - ACTIONS(2893), 1, - anon_sym_RBRACE, - STATE(1202), 1, - aux_sym_enumerator_list_repeat1, - [40379] = 4, + STATE(884), 1, + sym_field_declaration_list, + [40383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 1, - anon_sym_COMMA, - ACTIONS(2898), 1, - anon_sym_RBRACE, - STATE(1171), 1, - aux_sym_enumerator_list_repeat1, + ACTIONS(2905), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, [40392] = 4, - ACTIONS(3), 1, + ACTIONS(2143), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2900), 1, - anon_sym_SEMI, - STATE(1208), 1, - aux_sym_declaration_repeat1, + ACTIONS(2907), 1, + anon_sym_LF, + STATE(957), 1, + sym_preproc_argument_list, [40405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2909), 1, anon_sym_COMMA, - ACTIONS(2902), 1, - anon_sym_SEMI, - STATE(1164), 1, - aux_sym_type_definition_repeat2, + ACTIONS(2911), 1, + anon_sym_RPAREN, + STATE(1209), 1, + aux_sym_parameter_list_repeat1, [40418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(2904), 1, - anon_sym_SEMI, - STATE(1181), 1, - aux_sym_declaration_repeat1, + ACTIONS(2913), 1, + anon_sym_RBRACK_RBRACK, + STATE(1196), 1, + aux_sym_attribute_declaration_repeat1, [40431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2908), 1, - anon_sym_RPAREN, - STATE(1213), 1, - aux_sym_preproc_params_repeat1, + ACTIONS(2915), 1, + anon_sym_SEMI, + STATE(1205), 1, + aux_sym_declaration_repeat1, [40444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(2910), 1, - anon_sym_SEMI, - STATE(1208), 1, - aux_sym_declaration_repeat1, + ACTIONS(2917), 1, + anon_sym_RBRACK_RBRACK, + STATE(1196), 1, + aux_sym_attribute_declaration_repeat1, [40457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2912), 1, + ACTIONS(2919), 1, anon_sym_SEMI, - STATE(1208), 1, + STATE(1205), 1, aux_sym_declaration_repeat1, [40470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2916), 1, - anon_sym_RPAREN, - STATE(1211), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(2921), 1, + anon_sym_SEMI, + STATE(1205), 1, + aux_sym_declaration_repeat1, [40483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_RBRACK_RBRACK, - STATE(1199), 1, - aux_sym_attribute_declaration_repeat1, + ACTIONS(2923), 1, + anon_sym_SEMI, + STATE(1190), 1, + aux_sym_type_definition_repeat2, [40496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2920), 1, + ACTIONS(2925), 1, anon_sym_SEMI, - STATE(1208), 1, + STATE(1205), 1, aux_sym_declaration_repeat1, [40509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2922), 1, + ACTIONS(2927), 1, anon_sym_SEMI, - STATE(1208), 1, + STATE(1205), 1, aux_sym_declaration_repeat1, [40522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_COMMA, - ACTIONS(2924), 1, - anon_sym_RBRACK_RBRACK, - STATE(1160), 1, - aux_sym_attribute_declaration_repeat1, + ACTIONS(2812), 1, + sym_identifier, + ACTIONS(2929), 1, + anon_sym_RBRACE, + STATE(1249), 1, + sym_enumerator, [40535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2170), 1, anon_sym_COMMA, - ACTIONS(2926), 1, - anon_sym_SEMI, - STATE(1208), 1, - aux_sym_declaration_repeat1, + ACTIONS(2931), 1, + anon_sym_RPAREN, + STATE(1160), 1, + aux_sym_preproc_argument_list_repeat1, [40548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(1891), 1, + anon_sym_RBRACE, + ACTIONS(2933), 1, anon_sym_COMMA, - ACTIONS(2928), 1, - anon_sym_SEMI, - STATE(1176), 1, - aux_sym_declaration_repeat1, + STATE(1184), 1, + aux_sym_initializer_list_repeat1, [40561] = 4, - ACTIONS(3), 1, + ACTIONS(2143), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_RPAREN, - ACTIONS(2930), 1, - anon_sym_COMMA, - STATE(1185), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2936), 1, + anon_sym_LF, + STATE(957), 1, + sym_preproc_argument_list, [40574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - ACTIONS(2933), 1, + ACTIONS(2938), 1, anon_sym_SEMI, - STATE(1164), 1, + STATE(1190), 1, aux_sym_type_definition_repeat2, - [40587] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1967), 1, - anon_sym_RBRACE, - ACTIONS(2935), 1, - anon_sym_COMMA, - STATE(1187), 1, - aux_sym_initializer_list_repeat1, - [40600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2287), 1, - anon_sym_RPAREN, - ACTIONS(2938), 1, - anon_sym_COMMA, - STATE(1188), 1, - aux_sym_preproc_argument_list_repeat1, - [40613] = 2, + [40587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 3, + ACTIONS(2940), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [40622] = 4, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, + [40596] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_LF, - STATE(958), 1, - sym_preproc_argument_list, - [40635] = 4, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(2942), 1, + anon_sym_SEMI, + STATE(1190), 1, + aux_sym_type_definition_repeat2, + [40609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - ACTIONS(2948), 1, - anon_sym_RPAREN, - STATE(1191), 1, - aux_sym_preproc_params_repeat1, - [40648] = 4, + ACTIONS(2944), 1, + anon_sym_SEMI, + STATE(1190), 1, + aux_sym_type_definition_repeat2, + [40622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, - anon_sym_LBRACE, - ACTIONS(2950), 1, - sym_identifier, - STATE(879), 1, - sym_field_declaration_list, - [40661] = 4, - ACTIONS(2236), 1, + ACTIONS(2946), 1, + anon_sym_COMMA, + ACTIONS(2949), 1, + anon_sym_SEMI, + STATE(1190), 1, + aux_sym_type_definition_repeat2, + [40635] = 4, + ACTIONS(2143), 1, anon_sym_LPAREN2, - ACTIONS(2238), 1, + ACTIONS(2145), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(2951), 1, anon_sym_LF, - STATE(958), 1, + STATE(957), 1, sym_preproc_argument_list, - [40674] = 4, + [40648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(2957), 1, - anon_sym_RPAREN, - STATE(1194), 1, - aux_sym_parameter_list_repeat1, - [40687] = 4, + ACTIONS(2953), 1, + anon_sym_RBRACK_RBRACK, + STATE(1212), 1, + aux_sym_attribute_declaration_repeat1, + [40661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - ACTIONS(2959), 1, + ACTIONS(2955), 1, anon_sym_SEMI, - STATE(1164), 1, + STATE(1190), 1, aux_sym_type_definition_repeat2, - [40700] = 4, + [40674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2959), 1, + anon_sym_RPAREN, + ACTIONS(2957), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [40685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, anon_sym_COMMA, ACTIONS(2961), 1, anon_sym_SEMI, - STATE(1164), 1, + STATE(1190), 1, aux_sym_type_definition_repeat2, - [40713] = 4, + [40698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_COMMA, ACTIONS(2963), 1, + anon_sym_COMMA, + ACTIONS(2966), 1, anon_sym_RBRACK_RBRACK, - STATE(1201), 1, + STATE(1196), 1, aux_sym_attribute_declaration_repeat1, - [40726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2101), 1, - anon_sym_LBRACE, - ACTIONS(2965), 1, - sym_identifier, - STATE(881), 1, - sym_field_declaration_list, - [40739] = 4, + [40711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2970), 1, - anon_sym_RBRACK_RBRACK, - STATE(1199), 1, - aux_sym_attribute_declaration_repeat1, - [40752] = 4, + ACTIONS(2968), 1, + anon_sym_SEMI, + STATE(1164), 1, + aux_sym_declaration_repeat1, + [40724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2812), 1, sym_identifier, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_RBRACE, STATE(1249), 1, sym_enumerator, - [40765] = 4, + [40737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - ACTIONS(2974), 1, - anon_sym_RBRACK_RBRACK, - STATE(1199), 1, - aux_sym_attribute_declaration_repeat1, - [40778] = 4, + ACTIONS(2972), 1, + anon_sym_SEMI, + STATE(1175), 1, + aux_sym_declaration_repeat1, + [40750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_RBRACE, - ACTIONS(2976), 1, + ACTIONS(2974), 1, anon_sym_COMMA, - STATE(1171), 1, + STATE(1154), 1, aux_sym_enumerator_list_repeat1, - [40791] = 3, + [40763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2473), 1, + anon_sym_COMMA, + ACTIONS(2976), 1, + anon_sym_SEMI, + STATE(1205), 1, + aux_sym_declaration_repeat1, + [40776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(2978), 1, + anon_sym_SEMI, + STATE(1190), 1, + aux_sym_type_definition_repeat2, + [40789] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1839), 1, + anon_sym_COMMA, + ACTIONS(1841), 1, + anon_sym_RBRACE, + STATE(1213), 1, + aux_sym_initializer_list_repeat1, + [40802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym_LBRACE, ACTIONS(2980), 1, - anon_sym_RPAREN, - ACTIONS(2978), 2, - anon_sym_DOT_DOT_DOT, sym_identifier, - [40802] = 4, + STATE(888), 1, + sym_field_declaration_list, + [40815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, - anon_sym_COMMA, ACTIONS(2982), 1, + anon_sym_COMMA, + ACTIONS(2985), 1, anon_sym_SEMI, - STATE(1208), 1, + STATE(1205), 1, aux_sym_declaration_repeat1, - [40815] = 2, + [40828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [40824] = 4, + ACTIONS(1843), 1, + anon_sym_COMMA, + ACTIONS(2987), 1, + anon_sym_RPAREN, + STATE(1157), 1, + aux_sym_argument_list_repeat1, + [40841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 1, - anon_sym_RBRACE, - ACTIONS(2986), 1, + ACTIONS(2170), 1, anon_sym_COMMA, - STATE(1187), 1, - aux_sym_initializer_list_repeat1, - [40837] = 4, + ACTIONS(2989), 1, + anon_sym_RPAREN, + STATE(1160), 1, + aux_sym_preproc_argument_list_repeat1, + [40854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2988), 1, - anon_sym_SEMI, - STATE(1172), 1, - aux_sym_declaration_repeat1, - [40850] = 4, + ACTIONS(2099), 1, + anon_sym_LBRACE, + ACTIONS(2991), 1, + sym_identifier, + STATE(877), 1, + sym_enumerator_list, + [40867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 1, + ACTIONS(2909), 1, anon_sym_COMMA, ACTIONS(2993), 1, - anon_sym_SEMI, - STATE(1208), 1, - aux_sym_declaration_repeat1, - [40863] = 4, + anon_sym_RPAREN, + STATE(1169), 1, + aux_sym_parameter_list_repeat1, + [40880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, + ACTIONS(2890), 1, anon_sym_COMMA, ACTIONS(2995), 1, anon_sym_RPAREN, - STATE(1185), 1, - aux_sym_argument_list_repeat1, - [40876] = 4, + STATE(1161), 1, + aux_sym_preproc_params_repeat1, + [40893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(2551), 1, anon_sym_COMMA, ACTIONS(2997), 1, - anon_sym_RPAREN, - STATE(1188), 1, - aux_sym_preproc_argument_list_repeat1, - [40889] = 4, + anon_sym_SEMI, + STATE(1190), 1, + aux_sym_type_definition_repeat2, + [40906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 1, + ACTIONS(2868), 1, anon_sym_COMMA, ACTIONS(2999), 1, - anon_sym_RPAREN, - STATE(1194), 1, - aux_sym_parameter_list_repeat1, - [40902] = 4, + anon_sym_RBRACK_RBRACK, + STATE(1196), 1, + aux_sym_attribute_declaration_repeat1, + [40919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, - anon_sym_COMMA, + ACTIONS(1325), 1, + anon_sym_RBRACE, ACTIONS(3001), 1, - anon_sym_SEMI, - STATE(1155), 1, - aux_sym_declaration_repeat1, - [40915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2906), 1, anon_sym_COMMA, - ACTIONS(3003), 1, - anon_sym_RPAREN, - STATE(1191), 1, - aux_sym_preproc_params_repeat1, - [40928] = 3, - ACTIONS(2238), 1, + STATE(1184), 1, + aux_sym_initializer_list_repeat1, + [40932] = 3, + ACTIONS(2145), 1, sym_comment, + ACTIONS(3003), 1, + anon_sym_LF, ACTIONS(3005), 1, + sym_preproc_arg, + [40942] = 2, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(3007), 2, anon_sym_LF, - ACTIONS(3007), 1, sym_preproc_arg, - [40938] = 2, + [40950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 2, + ACTIONS(1891), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [40946] = 2, + anon_sym_RBRACE, + [40958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [40954] = 3, + ACTIONS(3009), 1, + anon_sym_LPAREN2, + STATE(1444), 1, + sym_parenthesized_expression, + [40968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN2, - STATE(1360), 1, - sym_argument_list, - [40964] = 3, - ACTIONS(2238), 1, + ACTIONS(2812), 1, + sym_identifier, + STATE(1249), 1, + sym_enumerator, + [40978] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 1, - anon_sym_LF, - ACTIONS(3013), 1, - sym_preproc_arg, - [40974] = 3, + ACTIONS(2966), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [40986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, - anon_sym_LPAREN2, - STATE(1305), 1, - sym_parenthesized_expression, - [40984] = 2, + ACTIONS(3011), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [40994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1965), 2, + ACTIONS(1877), 2, anon_sym_COMMA, anon_sym_SEMI, - [40992] = 3, - ACTIONS(2238), 1, + [41002] = 3, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LF, + ACTIONS(3015), 1, + sym_preproc_arg, + [41012] = 3, + ACTIONS(2145), 1, sym_comment, ACTIONS(3017), 1, anon_sym_LF, ACTIONS(3019), 1, sym_preproc_arg, - [41002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3015), 1, - anon_sym_LPAREN2, - STATE(1234), 1, - sym_parenthesized_expression, - [41012] = 3, + [41022] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3021), 1, anon_sym_LPAREN2, - STATE(329), 1, + STATE(330), 1, sym_parenthesized_expression, - [41022] = 3, + [41032] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3021), 1, anon_sym_LPAREN2, - STATE(324), 1, + STATE(323), 1, sym_parenthesized_expression, - [41032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_compound_statement, - [41042] = 3, + [41042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, - anon_sym_LBRACE, - STATE(172), 1, - sym_compound_statement, - [41052] = 2, + ACTIONS(1889), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 2, + ACTIONS(3023), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [41060] = 3, - ACTIONS(2238), 1, + anon_sym_RPAREN, + [41058] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3023), 1, - anon_sym_LF, ACTIONS(3025), 1, - sym_preproc_arg, - [41070] = 3, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(3027), 1, anon_sym_LF, - ACTIONS(3029), 1, + ACTIONS(3027), 1, sym_preproc_arg, - [41080] = 3, + [41068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LPAREN2, - [41090] = 3, + ACTIONS(2901), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41076] = 2, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(3029), 2, + anon_sym_LF, + sym_preproc_arg, + [41084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN2, - STATE(346), 1, - sym_parenthesized_expression, - [41100] = 2, + ACTIONS(1867), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [41092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 2, + ACTIONS(2589), 2, anon_sym_COMMA, anon_sym_SEMI, - [41108] = 3, - ACTIONS(2238), 1, + [41100] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(3009), 1, + anon_sym_LPAREN2, + STATE(1328), 1, + sym_parenthesized_expression, + [41110] = 2, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(3031), 2, anon_sym_LF, - ACTIONS(3037), 1, sym_preproc_arg, [41118] = 3, ACTIONS(3), 1, @@ -71751,1183 +71763,1189 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2878), 2, anon_sym_COMMA, anon_sym_RPAREN, - [41144] = 2, + [41136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41152] = 3, + ACTIONS(115), 1, + anon_sym_LBRACE, + STATE(85), 1, + sym_compound_statement, + [41146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3021), 1, anon_sym_LPAREN2, - STATE(1443), 1, + STATE(354), 1, sym_parenthesized_expression, - [41162] = 2, + [41156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41170] = 3, - ACTIONS(2238), 1, + ACTIONS(3033), 1, + sym_identifier, + STATE(1159), 1, + sym_attribute, + [41166] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3041), 1, + ACTIONS(3035), 1, anon_sym_LF, - ACTIONS(3043), 1, + ACTIONS(3037), 1, sym_preproc_arg, - [41180] = 3, - ACTIONS(2238), 1, + [41176] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 1, - anon_sym_LF, - ACTIONS(3047), 1, - sym_preproc_arg, - [41190] = 2, - ACTIONS(2238), 1, + ACTIONS(3009), 1, + anon_sym_LPAREN2, + STATE(1237), 1, + sym_parenthesized_expression, + [41186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 1, + anon_sym_LPAREN2, + STATE(352), 1, + sym_parenthesized_expression, + [41196] = 2, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3049), 2, + ACTIONS(3039), 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, + [41204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, + ACTIONS(3033), 1, sym_identifier, - STATE(1197), 1, + STATE(1219), 1, sym_attribute, - [41216] = 2, - ACTIONS(2238), 1, + [41214] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 2, - anon_sym_LF, - sym_preproc_arg, - [41224] = 3, + ACTIONS(3041), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [41222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3009), 1, anon_sym_LPAREN2, - STATE(319), 1, + STATE(1340), 1, sym_parenthesized_expression, - [41234] = 3, + [41232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3021), 1, anon_sym_LPAREN2, - STATE(1328), 1, + STATE(334), 1, sym_parenthesized_expression, - [41244] = 3, + [41242] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3021), 1, anon_sym_LPAREN2, - STATE(354), 1, + STATE(346), 1, sym_parenthesized_expression, - [41254] = 2, + [41252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 2, + ACTIONS(2855), 2, anon_sym_COMMA, anon_sym_RBRACE, - [41262] = 2, + [41260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 2, + ACTIONS(3043), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [41270] = 3, + [41268] = 2, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(3045), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [41276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(3047), 1, + sym_identifier, + ACTIONS(3049), 1, + anon_sym_LPAREN2, + [41286] = 3, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(3051), 1, + anon_sym_LF, + ACTIONS(3053), 1, + sym_preproc_arg, + [41296] = 3, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(3055), 1, + anon_sym_LF, + ACTIONS(3057), 1, + sym_preproc_arg, + [41306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(319), 1, anon_sym_LBRACE, - STATE(85), 1, + STATE(172), 1, sym_compound_statement, - [41280] = 3, + [41316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3009), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(1235), 1, sym_parenthesized_expression, - [41290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - sym_identifier, - STATE(1166), 1, - sym_attribute, - [41300] = 3, + [41326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - STATE(1382), 1, + STATE(1361), 1, sym_argument_list, - [41310] = 3, - ACTIONS(3), 1, + [41336] = 3, + ACTIONS(2145), 1, sym_comment, ACTIONS(3059), 1, - sym_identifier, + anon_sym_LF, ACTIONS(3061), 1, - anon_sym_LPAREN2, - [41320] = 3, + sym_preproc_arg, + [41346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3009), 1, anon_sym_LPAREN2, - STATE(1251), 1, + STATE(1306), 1, sym_parenthesized_expression, - [41330] = 2, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(3063), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [41338] = 3, + [41356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - sym_identifier, - STATE(1227), 1, - sym_attribute, - [41348] = 2, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(3065), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [41356] = 3, - ACTIONS(2238), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_compound_statement, + [41366] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3063), 1, anon_sym_LF, - ACTIONS(3069), 1, + ACTIONS(3065), 1, sym_preproc_arg, - [41366] = 2, + [41376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [41374] = 3, - ACTIONS(2238), 1, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + STATE(1383), 1, + sym_argument_list, + [41386] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3073), 1, + ACTIONS(3067), 1, anon_sym_LF, - ACTIONS(3075), 1, + ACTIONS(3069), 1, sym_preproc_arg, - [41384] = 3, - ACTIONS(2238), 1, + [41396] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3077), 1, + ACTIONS(3071), 1, anon_sym_LF, - ACTIONS(3079), 1, + ACTIONS(3073), 1, sym_preproc_arg, - [41394] = 3, + [41406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3075), 1, + sym_identifier, + ACTIONS(3077), 1, anon_sym_LPAREN2, - STATE(321), 1, - sym_parenthesized_expression, - [41404] = 3, - ACTIONS(2238), 1, + [41416] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3079), 1, anon_sym_LF, - ACTIONS(3083), 1, + ACTIONS(3081), 1, sym_preproc_arg, - [41414] = 3, - ACTIONS(2238), 1, + [41426] = 3, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3085), 1, + ACTIONS(3083), 1, anon_sym_LF, - ACTIONS(3087), 1, + ACTIONS(3085), 1, sym_preproc_arg, - [41424] = 3, - ACTIONS(3), 1, + [41436] = 2, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3015), 1, - anon_sym_LPAREN2, - STATE(1225), 1, - sym_parenthesized_expression, - [41434] = 3, - ACTIONS(2238), 1, + ACTIONS(3087), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [41444] = 3, + ACTIONS(2145), 1, sym_comment, ACTIONS(3089), 1, anon_sym_LF, ACTIONS(3091), 1, sym_preproc_arg, - [41444] = 2, + [41454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41452] = 3, + ACTIONS(3021), 1, + anon_sym_LPAREN2, + STATE(322), 1, + sym_parenthesized_expression, + [41464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3009), 1, anon_sym_LPAREN2, - STATE(1342), 1, + STATE(1260), 1, sym_parenthesized_expression, - [41462] = 3, + [41474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - sym_identifier, - STATE(1182), 1, - sym_attribute, - [41472] = 3, + ACTIONS(3021), 1, + anon_sym_LPAREN2, + STATE(320), 1, + sym_parenthesized_expression, + [41484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(3033), 1, sym_identifier, - STATE(1249), 1, - sym_enumerator, - [41482] = 3, + STATE(1192), 1, + sym_attribute, + [41494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3009), 1, anon_sym_LPAREN2, - STATE(1226), 1, + STATE(1255), 1, sym_parenthesized_expression, - [41492] = 3, + [41504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN2, - STATE(333), 1, - sym_parenthesized_expression, - [41502] = 2, - ACTIONS(2238), 1, + ACTIONS(3033), 1, + sym_identifier, + STATE(1163), 1, + sym_attribute, + [41514] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3093), 1, anon_sym_LF, - [41509] = 2, + [41521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1911), 1, + ACTIONS(1941), 1, anon_sym_RPAREN, - [41516] = 2, + [41528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1935), 1, + ACTIONS(1895), 1, anon_sym_RPAREN, - [41523] = 2, + [41535] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3095), 1, aux_sym_preproc_if_token2, - [41530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1895), 1, - anon_sym_SEMI, - [41537] = 2, + [41542] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3097), 1, anon_sym_SEMI, - [41544] = 2, + [41549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 1, - anon_sym_RPAREN, - [41551] = 2, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(2952), 1, - anon_sym_LF, - [41558] = 2, + ACTIONS(1879), 1, + anon_sym_SEMI, + [41556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1903), 1, anon_sym_RPAREN, - [41565] = 2, + [41563] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3099), 1, sym_identifier, - [41572] = 2, + [41570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(1907), 1, anon_sym_RPAREN, - [41579] = 2, + [41577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1841), 1, anon_sym_RBRACE, - [41586] = 2, + [41584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_RPAREN, + [41591] = 2, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2888), 1, + anon_sym_LF, + [41598] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3101), 1, anon_sym_SEMI, - [41593] = 2, + [41605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 1, + ACTIONS(1921), 1, anon_sym_RPAREN, - [41600] = 2, + [41612] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3103), 1, - anon_sym_SEMI, - [41607] = 2, - ACTIONS(2238), 1, + aux_sym_preproc_if_token2, + [41619] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3105), 1, anon_sym_LF, - [41614] = 2, - ACTIONS(2238), 1, + [41626] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3107), 1, anon_sym_LF, - [41621] = 2, - ACTIONS(2238), 1, + [41633] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3109), 1, anon_sym_LF, - [41628] = 2, + [41640] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3111), 1, aux_sym_preproc_if_token2, - [41635] = 2, - ACTIONS(2238), 1, + [41647] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3113), 1, anon_sym_LF, - [41642] = 2, + [41654] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3115), 1, - aux_sym_preproc_if_token2, - [41649] = 2, + anon_sym_SEMI, + [41661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3117), 1, aux_sym_preproc_if_token2, - [41656] = 2, - ACTIONS(2238), 1, + [41668] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3119), 1, anon_sym_LF, - [41663] = 2, - ACTIONS(2238), 1, + [41675] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3121), 1, anon_sym_LF, - [41670] = 2, + [41682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 1, + ACTIONS(1953), 1, anon_sym_SEMI, - [41677] = 2, - ACTIONS(2238), 1, + [41689] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3123), 1, anon_sym_LF, - [41684] = 2, + [41696] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3125), 1, anon_sym_SEMI, - [41691] = 2, + [41703] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(1955), 1, + anon_sym_RPAREN, + [41710] = 2, + ACTIONS(2145), 1, + sym_comment, ACTIONS(3127), 1, - anon_sym_COLON, - [41698] = 2, - ACTIONS(2238), 1, + anon_sym_LF, + [41717] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3129), 1, anon_sym_LF, - [41705] = 2, - ACTIONS(2238), 1, + [41724] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3131), 1, - anon_sym_LF, - [41712] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [41731] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3133), 1, - anon_sym_SEMI, - [41719] = 2, - ACTIONS(2238), 1, + anon_sym_LF, + [41738] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3135), 1, - anon_sym_LF, - [41726] = 2, - ACTIONS(2238), 1, + anon_sym_COLON, + [41745] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3137), 1, - anon_sym_LF, - [41733] = 2, + sym_identifier, + [41752] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3139), 1, sym_identifier, - [41740] = 2, - ACTIONS(3), 1, + [41759] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3141), 1, - sym_identifier, - [41747] = 2, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(3143), 1, anon_sym_LF, - [41754] = 2, + [41766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 1, + ACTIONS(3143), 1, aux_sym_preproc_if_token2, - [41761] = 2, - ACTIONS(3), 1, + [41773] = 2, + ACTIONS(2145), 1, sym_comment, - ACTIONS(1885), 1, - anon_sym_RPAREN, - [41768] = 2, + ACTIONS(3145), 1, + anon_sym_LF, + [41780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(1957), 1, anon_sym_RPAREN, - [41775] = 2, + [41787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, + ACTIONS(1883), 1, anon_sym_RPAREN, - [41782] = 2, + [41794] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3147), 1, sym_identifier, - [41789] = 2, + [41801] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3149), 1, aux_sym_preproc_if_token2, - [41796] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1901), 1, - anon_sym_RPAREN, - [41803] = 2, + [41808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1923), 1, anon_sym_RPAREN, - [41810] = 2, + [41815] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3151), 1, aux_sym_preproc_if_token2, - [41817] = 2, + [41822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, + ACTIONS(1947), 1, anon_sym_RPAREN, - [41824] = 2, + [41829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(1937), 1, + anon_sym_RPAREN, + [41836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1967), 1, anon_sym_RPAREN, - [41831] = 2, + [41843] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3153), 1, anon_sym_SEMI, - [41838] = 2, + [41850] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3155), 1, aux_sym_preproc_if_token2, - [41845] = 2, + [41857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3157), 1, aux_sym_preproc_if_token2, - [41852] = 2, + [41864] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3159), 1, aux_sym_preproc_if_token2, - [41859] = 2, + [41871] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3161), 1, aux_sym_preproc_if_token2, - [41866] = 2, + [41878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3163), 1, anon_sym_SEMI, - [41873] = 2, + [41885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3165), 1, anon_sym_SEMI, - [41880] = 2, + [41892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3167), 1, aux_sym_preproc_if_token2, - [41887] = 2, + [41899] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3169), 1, anon_sym_STAR, - [41894] = 2, + [41906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, - anon_sym_SEMI, - [41901] = 2, + ACTIONS(1917), 1, + anon_sym_RPAREN, + [41913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_RPAREN, - [41908] = 2, + ACTIONS(3171), 1, + aux_sym_preproc_if_token2, + [41920] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3173), 1, - aux_sym_preproc_if_token2, - [41915] = 2, + anon_sym_SEMI, + [41927] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3175), 1, - anon_sym_SEMI, - [41922] = 2, + aux_sym_preproc_if_token2, + [41934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1905), 1, anon_sym_RPAREN, - [41929] = 2, + [41941] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, aux_sym_preproc_if_token2, - [41936] = 2, + [41948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(1901), 1, anon_sym_RPAREN, - [41943] = 2, + [41955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, - aux_sym_preproc_if_token2, - [41950] = 2, + ACTIONS(1897), 1, + anon_sym_RPAREN, + [41962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 1, - anon_sym_RPAREN, - [41957] = 2, + ACTIONS(3179), 1, + anon_sym_SEMI, + [41969] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3181), 1, sym_identifier, - [41964] = 2, + [41976] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3183), 1, - aux_sym_preproc_if_token2, - [41971] = 2, + anon_sym_SEMI, + [41983] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3185), 1, - anon_sym_SEMI, - [41978] = 2, + aux_sym_preproc_if_token2, + [41990] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3187), 1, sym_identifier, - [41985] = 2, + [41997] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3189), 1, - anon_sym_SEMI, - [41992] = 2, + aux_sym_preproc_if_token2, + [42004] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3191), 1, aux_sym_preproc_if_token2, - [41999] = 2, + [42011] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3193), 1, - aux_sym_preproc_if_token2, - [42006] = 2, + anon_sym_RPAREN, + [42018] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3195), 1, anon_sym_RPAREN, - [42013] = 2, + [42025] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3197), 1, + aux_sym_preproc_if_token2, + [42032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1933), 1, anon_sym_RPAREN, - [42020] = 2, + [42039] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, aux_sym_preproc_if_token2, - [42027] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1969), 1, - anon_sym_RPAREN, - [42034] = 2, + [42046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3201), 1, aux_sym_preproc_if_token2, - [42041] = 2, + [42053] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3203), 1, aux_sym_preproc_if_token2, - [42048] = 2, + [42060] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3205), 1, anon_sym_RPAREN, - [42055] = 2, - ACTIONS(2238), 1, + [42067] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3207), 1, anon_sym_LF, - [42062] = 2, + [42074] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3209), 1, aux_sym_preproc_if_token2, - [42069] = 2, - ACTIONS(3), 1, + [42081] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3211), 1, - aux_sym_preproc_if_token2, - [42076] = 2, - ACTIONS(2238), 1, + anon_sym_LF, + [42088] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3213), 1, - anon_sym_LF, - [42083] = 2, + anon_sym_SQUOTE, + [42095] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3215), 1, aux_sym_preproc_if_token2, - [42090] = 2, + [42102] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3217), 1, sym_identifier, - [42097] = 2, + [42109] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3219), 1, anon_sym_STAR, - [42104] = 2, + [42116] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3221), 1, - anon_sym_SQUOTE, - [42111] = 2, + anon_sym_SEMI, + [42123] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3223), 1, anon_sym_RPAREN, - [42118] = 2, + [42130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(1893), 1, anon_sym_SEMI, - [42125] = 2, + [42137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(3225), 1, anon_sym_RPAREN, - [42132] = 2, + [42144] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1939), 1, anon_sym_SEMI, - [42139] = 2, + [42151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(3227), 1, anon_sym_SEMI, - [42146] = 2, + [42158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3229), 1, sym_identifier, - [42153] = 2, - ACTIONS(1448), 1, + [42165] = 2, + ACTIONS(1446), 1, anon_sym_LF, - ACTIONS(2238), 1, + ACTIONS(2145), 1, sym_comment, - [42160] = 2, + [42172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3231), 1, sym_identifier, - [42167] = 2, + [42179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3233), 1, sym_identifier, - [42174] = 2, - ACTIONS(1444), 1, + [42186] = 2, + ACTIONS(1436), 1, anon_sym_LF, - ACTIONS(2238), 1, + ACTIONS(2145), 1, sym_comment, - [42181] = 2, + [42193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 1, + ACTIONS(2882), 1, anon_sym_RBRACE, - [42188] = 2, + [42200] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3235), 1, anon_sym_COLON, - [42195] = 2, + [42207] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3237), 1, anon_sym_RPAREN, - [42202] = 2, + [42214] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3239), 1, anon_sym_RPAREN, - [42209] = 2, + [42221] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3241), 1, sym_identifier, - [42216] = 2, - ACTIONS(2238), 1, + [42228] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3243), 1, anon_sym_LF, - [42223] = 2, + [42235] = 2, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2907), 1, + anon_sym_LF, + [42242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 1, + ACTIONS(1961), 1, anon_sym_SEMI, - [42230] = 2, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(2868), 1, - anon_sym_LF, - [42237] = 2, + [42249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, + ACTIONS(3245), 1, anon_sym_SEMI, - [42244] = 2, + [42256] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3247), 1, sym_identifier, - [42251] = 2, + [42263] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3249), 1, anon_sym_RPAREN, - [42258] = 2, + [42270] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3251), 1, anon_sym_SEMI, - [42265] = 2, + [42277] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3253), 1, anon_sym_STAR, - [42272] = 2, + [42284] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3255), 1, sym_identifier, - [42279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - anon_sym_SEMI, - [42286] = 2, + [42291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3257), 1, anon_sym_SEMI, - [42293] = 2, + [42298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3259), 1, anon_sym_SEMI, - [42300] = 2, - ACTIONS(2238), 1, + [42305] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_LF, - [42307] = 2, + ACTIONS(1875), 1, + anon_sym_SEMI, + [42312] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3261), 1, anon_sym_COLON, - [42314] = 2, + [42319] = 2, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2936), 1, + anon_sym_LF, + [42326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3263), 1, aux_sym_preproc_if_token2, - [42321] = 2, + [42333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3265), 1, sym_identifier, - [42328] = 2, - ACTIONS(2238), 1, + [42340] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3267), 1, anon_sym_LF, - [42335] = 2, - ACTIONS(2238), 1, + [42347] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3269), 1, anon_sym_LF, - [42342] = 2, + [42354] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3271), 1, sym_identifier, - [42349] = 2, + [42361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3273), 1, sym_identifier, - [42356] = 2, + [42368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + ACTIONS(3275), 1, anon_sym_RPAREN, - [42363] = 2, + [42375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(1899), 1, anon_sym_SEMI, - [42370] = 2, + [42382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(3277), 1, sym_identifier, - [42377] = 2, + [42389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3279), 1, sym_identifier, - [42384] = 2, + [42396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, + ACTIONS(3281), 1, anon_sym_SEMI, - [42391] = 2, + [42403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3283), 1, anon_sym_STAR, - [42398] = 2, + [42410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3283), 1, + ACTIONS(3285), 1, anon_sym_SQUOTE, - [42405] = 2, - ACTIONS(2238), 1, + [42417] = 2, + ACTIONS(2145), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3287), 1, anon_sym_LF, - [42412] = 2, + [42424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 1, + ACTIONS(3289), 1, anon_sym_SQUOTE, - [42419] = 2, + [42431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 1, + ACTIONS(1949), 1, anon_sym_RPAREN, - [42426] = 2, + [42438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3291), 1, anon_sym_SEMI, - [42433] = 2, + [42445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, + ACTIONS(1969), 1, anon_sym_SEMI, - [42440] = 2, + [42452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3293), 1, anon_sym_while, - [42447] = 2, + [42459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3295), 1, aux_sym_preproc_if_token2, - [42454] = 2, + [42466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 1, + ACTIONS(3297), 1, aux_sym_preproc_if_token2, - [42461] = 2, + [42473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1927), 1, + ACTIONS(1965), 1, anon_sym_RPAREN, - [42468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3297), 1, - sym_identifier, - [42475] = 2, + [42480] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3299), 1, sym_identifier, - [42482] = 2, + [42487] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3301), 1, sym_identifier, - [42489] = 2, + [42494] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3303), 1, + sym_identifier, + [42501] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1935), 1, anon_sym_RPAREN, - [42496] = 2, + [42508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3305), 1, sym_identifier, - [42503] = 2, + [42515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, + ACTIONS(3307), 1, anon_sym_RPAREN, - [42510] = 2, + [42522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(1951), 1, anon_sym_RPAREN, - [42517] = 2, + [42529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, + ACTIONS(3309), 1, anon_sym_SEMI, - [42524] = 2, + [42536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3311), 1, anon_sym_RPAREN, - [42531] = 2, + [42543] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1913), 1, anon_sym_RPAREN, - [42538] = 2, - ACTIONS(2238), 1, - sym_comment, - ACTIONS(3311), 1, - anon_sym_LF, - [42545] = 2, - ACTIONS(3), 1, + [42550] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3313), 1, - anon_sym_RPAREN, - [42552] = 2, + anon_sym_LF, + [42557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3315), 1, - aux_sym_preproc_if_token2, - [42559] = 2, + anon_sym_RPAREN, + [42564] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3317), 1, - anon_sym_while, - [42566] = 2, + aux_sym_preproc_if_token2, + [42571] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3319), 1, - anon_sym_RPAREN, - [42573] = 2, + anon_sym_while, + [42578] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3321), 1, aux_sym_preproc_if_token2, - [42580] = 2, - ACTIONS(2238), 1, + [42585] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(1887), 1, + anon_sym_RPAREN, + [42592] = 2, + ACTIONS(2145), 1, + sym_comment, + ACTIONS(2951), 1, anon_sym_LF, - [42587] = 2, + [42599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1945), 1, + ACTIONS(1881), 1, anon_sym_SEMI, - [42594] = 2, + [42606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1947), 1, + ACTIONS(1929), 1, anon_sym_SEMI, - [42601] = 2, + [42613] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3323), 1, ts_builtin_sym_end, - [42608] = 2, - ACTIONS(2238), 1, + [42620] = 2, + ACTIONS(2145), 1, sym_comment, ACTIONS(3325), 1, anon_sym_LF, - [42615] = 2, + [42627] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3327), 1, aux_sym_preproc_if_token2, - [42622] = 2, + [42634] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3329), 1, sym_identifier, - [42629] = 2, + [42641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3331), 1, anon_sym_SEMI, - [42636] = 2, + [42648] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3333), 1, anon_sym_while, - [42643] = 2, + [42655] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3335), 1, anon_sym_SEMI, - [42650] = 2, + [42662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3337), 1, anon_sym_LPAREN2, - [42657] = 2, + [42669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1933), 1, + ACTIONS(1963), 1, anon_sym_RPAREN, - [42664] = 2, + [42676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, + ACTIONS(1919), 1, anon_sym_SEMI, - [42671] = 2, + [42683] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3339), 1, anon_sym_COLON, - [42678] = 2, + [42690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3341), 1, anon_sym_SEMI, - [42685] = 2, + [42697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1885), 1, anon_sym_RPAREN, - [42692] = 2, + [42704] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3343), 1, anon_sym_SEMI, - [42699] = 2, + [42711] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3345), 1, anon_sym_while, - [42706] = 2, + [42718] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3347), 1, anon_sym_SEMI, - [42713] = 2, + [42725] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3349), 1, anon_sym_RPAREN, - [42720] = 2, + [42732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1959), 1, anon_sym_SEMI, - [42727] = 2, + [42739] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3351), 1, anon_sym_LPAREN2, - [42734] = 2, + [42746] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3353), 1, aux_sym_preproc_if_token2, - [42741] = 2, + [42753] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3355), 1, anon_sym_LPAREN2, - [42748] = 2, + [42760] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3357), 1, anon_sym_LPAREN2, - [42755] = 2, + [42767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3359), 1, aux_sym_preproc_if_token2, - [42762] = 2, + [42774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3361), 1, anon_sym_LPAREN2, - [42769] = 2, + [42781] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3363), 1, sym_identifier, - [42776] = 2, + [42788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3365), 1, @@ -72937,790 +72955,790 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(386)] = 0, [SMALL_STATE(387)] = 71, - [SMALL_STATE(388)] = 178, + [SMALL_STATE(388)] = 142, [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(391)] = 440, + [SMALL_STATE(392)] = 548, + [SMALL_STATE(393)] = 656, + [SMALL_STATE(394)] = 764, + [SMALL_STATE(395)] = 872, + [SMALL_STATE(396)] = 980, + [SMALL_STATE(397)] = 1088, + [SMALL_STATE(398)] = 1196, + [SMALL_STATE(399)] = 1304, + [SMALL_STATE(400)] = 1412, + [SMALL_STATE(401)] = 1520, + [SMALL_STATE(402)] = 1628, + [SMALL_STATE(403)] = 1736, + [SMALL_STATE(404)] = 1844, + [SMALL_STATE(405)] = 1952, + [SMALL_STATE(406)] = 2027, + [SMALL_STATE(407)] = 2104, + [SMALL_STATE(408)] = 2179, + [SMALL_STATE(409)] = 2254, + [SMALL_STATE(410)] = 2329, + [SMALL_STATE(411)] = 2406, + [SMALL_STATE(412)] = 2483, + [SMALL_STATE(413)] = 2560, + [SMALL_STATE(414)] = 2660, + [SMALL_STATE(415)] = 2732, + [SMALL_STATE(416)] = 2832, + [SMALL_STATE(417)] = 2929, + [SMALL_STATE(418)] = 3026, + [SMALL_STATE(419)] = 3124, + [SMALL_STATE(420)] = 3222, + [SMALL_STATE(421)] = 3320, + [SMALL_STATE(422)] = 3414, + [SMALL_STATE(423)] = 3512, + [SMALL_STATE(424)] = 3610, + [SMALL_STATE(425)] = 3708, + [SMALL_STATE(426)] = 3799, + [SMALL_STATE(427)] = 3902, + [SMALL_STATE(428)] = 3993, + [SMALL_STATE(429)] = 4084, + [SMALL_STATE(430)] = 4175, + [SMALL_STATE(431)] = 4266, + [SMALL_STATE(432)] = 4327, + [SMALL_STATE(433)] = 4418, + [SMALL_STATE(434)] = 4509, + [SMALL_STATE(435)] = 4600, + [SMALL_STATE(436)] = 4661, + [SMALL_STATE(437)] = 4722, + [SMALL_STATE(438)] = 4813, + [SMALL_STATE(439)] = 4904, + [SMALL_STATE(440)] = 4959, + [SMALL_STATE(441)] = 5050, + [SMALL_STATE(442)] = 5141, + [SMALL_STATE(443)] = 5232, + [SMALL_STATE(444)] = 5287, + [SMALL_STATE(445)] = 5378, + [SMALL_STATE(446)] = 5460, + [SMALL_STATE(447)] = 5542, + [SMALL_STATE(448)] = 5624, + [SMALL_STATE(449)] = 5706, + [SMALL_STATE(450)] = 5788, + [SMALL_STATE(451)] = 5870, + [SMALL_STATE(452)] = 5952, + [SMALL_STATE(453)] = 6034, + [SMALL_STATE(454)] = 6116, + [SMALL_STATE(455)] = 6198, + [SMALL_STATE(456)] = 6280, + [SMALL_STATE(457)] = 6362, + [SMALL_STATE(458)] = 6444, + [SMALL_STATE(459)] = 6526, + [SMALL_STATE(460)] = 6608, + [SMALL_STATE(461)] = 6690, + [SMALL_STATE(462)] = 6772, + [SMALL_STATE(463)] = 6854, + [SMALL_STATE(464)] = 6936, + [SMALL_STATE(465)] = 7018, + [SMALL_STATE(466)] = 7100, + [SMALL_STATE(467)] = 7182, + [SMALL_STATE(468)] = 7264, + [SMALL_STATE(469)] = 7346, + [SMALL_STATE(470)] = 7428, + [SMALL_STATE(471)] = 7510, + [SMALL_STATE(472)] = 7592, + [SMALL_STATE(473)] = 7674, + [SMALL_STATE(474)] = 7756, + [SMALL_STATE(475)] = 7838, + [SMALL_STATE(476)] = 7920, + [SMALL_STATE(477)] = 8002, + [SMALL_STATE(478)] = 8084, + [SMALL_STATE(479)] = 8166, + [SMALL_STATE(480)] = 8245, + [SMALL_STATE(481)] = 8324, + [SMALL_STATE(482)] = 8403, + [SMALL_STATE(483)] = 8482, + [SMALL_STATE(484)] = 8561, + [SMALL_STATE(485)] = 8640, + [SMALL_STATE(486)] = 8719, + [SMALL_STATE(487)] = 8798, + [SMALL_STATE(488)] = 8877, + [SMALL_STATE(489)] = 8956, + [SMALL_STATE(490)] = 9035, + [SMALL_STATE(491)] = 9114, + [SMALL_STATE(492)] = 9193, + [SMALL_STATE(493)] = 9272, + [SMALL_STATE(494)] = 9351, + [SMALL_STATE(495)] = 9402, + [SMALL_STATE(496)] = 9481, + [SMALL_STATE(497)] = 9560, + [SMALL_STATE(498)] = 9639, + [SMALL_STATE(499)] = 9718, + [SMALL_STATE(500)] = 9797, + [SMALL_STATE(501)] = 9876, + [SMALL_STATE(502)] = 9955, + [SMALL_STATE(503)] = 10034, + [SMALL_STATE(504)] = 10113, + [SMALL_STATE(505)] = 10192, + [SMALL_STATE(506)] = 10271, + [SMALL_STATE(507)] = 10350, + [SMALL_STATE(508)] = 10426, + [SMALL_STATE(509)] = 10502, + [SMALL_STATE(510)] = 10578, + [SMALL_STATE(511)] = 10654, + [SMALL_STATE(512)] = 10730, + [SMALL_STATE(513)] = 10806, + [SMALL_STATE(514)] = 10882, + [SMALL_STATE(515)] = 10958, + [SMALL_STATE(516)] = 11034, + [SMALL_STATE(517)] = 11084, + [SMALL_STATE(518)] = 11160, + [SMALL_STATE(519)] = 11236, + [SMALL_STATE(520)] = 11312, + [SMALL_STATE(521)] = 11388, + [SMALL_STATE(522)] = 11438, + [SMALL_STATE(523)] = 11514, + [SMALL_STATE(524)] = 11590, + [SMALL_STATE(525)] = 11666, + [SMALL_STATE(526)] = 11742, + [SMALL_STATE(527)] = 11818, + [SMALL_STATE(528)] = 11894, + [SMALL_STATE(529)] = 11970, + [SMALL_STATE(530)] = 12046, + [SMALL_STATE(531)] = 12122, + [SMALL_STATE(532)] = 12172, + [SMALL_STATE(533)] = 12232, + [SMALL_STATE(534)] = 12308, + [SMALL_STATE(535)] = 12392, + [SMALL_STATE(536)] = 12468, + [SMALL_STATE(537)] = 12544, + [SMALL_STATE(538)] = 12594, + [SMALL_STATE(539)] = 12654, + [SMALL_STATE(540)] = 12704, + [SMALL_STATE(541)] = 12780, + [SMALL_STATE(542)] = 12856, + [SMALL_STATE(543)] = 12932, + [SMALL_STATE(544)] = 13008, + [SMALL_STATE(545)] = 13084, + [SMALL_STATE(546)] = 13160, + [SMALL_STATE(547)] = 13236, + [SMALL_STATE(548)] = 13312, + [SMALL_STATE(549)] = 13388, + [SMALL_STATE(550)] = 13438, + [SMALL_STATE(551)] = 13498, + [SMALL_STATE(552)] = 13556, + [SMALL_STATE(553)] = 13632, + [SMALL_STATE(554)] = 13708, + [SMALL_STATE(555)] = 13784, + [SMALL_STATE(556)] = 13860, + [SMALL_STATE(557)] = 13936, + [SMALL_STATE(558)] = 14012, + [SMALL_STATE(559)] = 14088, + [SMALL_STATE(560)] = 14150, + [SMALL_STATE(561)] = 14226, + [SMALL_STATE(562)] = 14302, + [SMALL_STATE(563)] = 14378, + [SMALL_STATE(564)] = 14444, + [SMALL_STATE(565)] = 14520, + [SMALL_STATE(566)] = 14570, + [SMALL_STATE(567)] = 14646, + [SMALL_STATE(568)] = 14696, + [SMALL_STATE(569)] = 14772, + [SMALL_STATE(570)] = 14848, + [SMALL_STATE(571)] = 14924, + [SMALL_STATE(572)] = 15000, + [SMALL_STATE(573)] = 15076, + [SMALL_STATE(574)] = 15152, + [SMALL_STATE(575)] = 15228, + [SMALL_STATE(576)] = 15292, + [SMALL_STATE(577)] = 15358, + [SMALL_STATE(578)] = 15434, + [SMALL_STATE(579)] = 15510, + [SMALL_STATE(580)] = 15580, + [SMALL_STATE(581)] = 15656, + [SMALL_STATE(582)] = 15728, + [SMALL_STATE(583)] = 15804, + [SMALL_STATE(584)] = 15880, + [SMALL_STATE(585)] = 15930, + [SMALL_STATE(586)] = 16004, + [SMALL_STATE(587)] = 16080, + [SMALL_STATE(588)] = 16156, + [SMALL_STATE(589)] = 16234, + [SMALL_STATE(590)] = 16314, + [SMALL_STATE(591)] = 16390, + [SMALL_STATE(592)] = 16440, + [SMALL_STATE(593)] = 16502, + [SMALL_STATE(594)] = 16578, + [SMALL_STATE(595)] = 16654, + [SMALL_STATE(596)] = 16730, + [SMALL_STATE(597)] = 16780, + [SMALL_STATE(598)] = 16856, + [SMALL_STATE(599)] = 16932, + [SMALL_STATE(600)] = 17008, + [SMALL_STATE(601)] = 17058, + [SMALL_STATE(602)] = 17134, + [SMALL_STATE(603)] = 17216, + [SMALL_STATE(604)] = 17292, + [SMALL_STATE(605)] = 17368, + [SMALL_STATE(606)] = 17418, + [SMALL_STATE(607)] = 17494, + [SMALL_STATE(608)] = 17554, + [SMALL_STATE(609)] = 17604, + [SMALL_STATE(610)] = 17654, + [SMALL_STATE(611)] = 17730, + [SMALL_STATE(612)] = 17806, + [SMALL_STATE(613)] = 17882, + [SMALL_STATE(614)] = 17935, + [SMALL_STATE(615)] = 17988, + [SMALL_STATE(616)] = 18070, + [SMALL_STATE(617)] = 18123, + [SMALL_STATE(618)] = 18170, + [SMALL_STATE(619)] = 18223, + [SMALL_STATE(620)] = 18276, + [SMALL_STATE(621)] = 18355, + [SMALL_STATE(622)] = 18408, + [SMALL_STATE(623)] = 18455, + [SMALL_STATE(624)] = 18521, + [SMALL_STATE(625)] = 18599, + [SMALL_STATE(626)] = 18645, + [SMALL_STATE(627)] = 18713, + [SMALL_STATE(628)] = 18783, + [SMALL_STATE(629)] = 18855, + [SMALL_STATE(630)] = 18929, + [SMALL_STATE(631)] = 18989, + [SMALL_STATE(632)] = 19065, + [SMALL_STATE(633)] = 19121, + [SMALL_STATE(634)] = 19201, + [SMALL_STATE(635)] = 19257, + [SMALL_STATE(636)] = 19315, + [SMALL_STATE(637)] = 19371, + [SMALL_STATE(638)] = 19433, + [SMALL_STATE(639)] = 19495, + [SMALL_STATE(640)] = 19549, + [SMALL_STATE(641)] = 19605, + [SMALL_STATE(642)] = 19650, + [SMALL_STATE(643)] = 19695, + [SMALL_STATE(644)] = 19744, + [SMALL_STATE(645)] = 19789, + [SMALL_STATE(646)] = 19861, + [SMALL_STATE(647)] = 19917, + [SMALL_STATE(648)] = 19989, + [SMALL_STATE(649)] = 20061, + [SMALL_STATE(650)] = 20133, + [SMALL_STATE(651)] = 20202, + [SMALL_STATE(652)] = 20276, + [SMALL_STATE(653)] = 20320, + [SMALL_STATE(654)] = 20377, + [SMALL_STATE(655)] = 20448, + [SMALL_STATE(656)] = 20503, + [SMALL_STATE(657)] = 20560, [SMALL_STATE(658)] = 20621, - [SMALL_STATE(659)] = 20682, - [SMALL_STATE(660)] = 20755, - [SMALL_STATE(661)] = 20818, + [SMALL_STATE(659)] = 20684, + [SMALL_STATE(660)] = 20749, + [SMALL_STATE(661)] = 20816, [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(663)] = 20952, + [SMALL_STATE(664)] = 21005, + [SMALL_STATE(665)] = 21078, + [SMALL_STATE(666)] = 21117, + [SMALL_STATE(667)] = 21155, + [SMALL_STATE(668)] = 21193, + [SMALL_STATE(669)] = 21230, + [SMALL_STATE(670)] = 21267, + [SMALL_STATE(671)] = 21304, + [SMALL_STATE(672)] = 21341, + [SMALL_STATE(673)] = 21378, + [SMALL_STATE(674)] = 21415, + [SMALL_STATE(675)] = 21452, + [SMALL_STATE(676)] = 21489, + [SMALL_STATE(677)] = 21526, + [SMALL_STATE(678)] = 21563, + [SMALL_STATE(679)] = 21600, + [SMALL_STATE(680)] = 21637, + [SMALL_STATE(681)] = 21674, + [SMALL_STATE(682)] = 21711, + [SMALL_STATE(683)] = 21748, + [SMALL_STATE(684)] = 21785, + [SMALL_STATE(685)] = 21822, + [SMALL_STATE(686)] = 21859, + [SMALL_STATE(687)] = 21896, + [SMALL_STATE(688)] = 21933, + [SMALL_STATE(689)] = 22008, + [SMALL_STATE(690)] = 22083, + [SMALL_STATE(691)] = 22120, + [SMALL_STATE(692)] = 22157, + [SMALL_STATE(693)] = 22194, + [SMALL_STATE(694)] = 22231, + [SMALL_STATE(695)] = 22306, + [SMALL_STATE(696)] = 22379, + [SMALL_STATE(697)] = 22427, + [SMALL_STATE(698)] = 22497, + [SMALL_STATE(699)] = 22569, + [SMALL_STATE(700)] = 22639, + [SMALL_STATE(701)] = 22711, + [SMALL_STATE(702)] = 22783, + [SMALL_STATE(703)] = 22855, + [SMALL_STATE(704)] = 22927, + [SMALL_STATE(705)] = 22999, + [SMALL_STATE(706)] = 23069, + [SMALL_STATE(707)] = 23139, + [SMALL_STATE(708)] = 23211, + [SMALL_STATE(709)] = 23283, + [SMALL_STATE(710)] = 23355, + [SMALL_STATE(711)] = 23427, + [SMALL_STATE(712)] = 23499, + [SMALL_STATE(713)] = 23535, + [SMALL_STATE(714)] = 23607, + [SMALL_STATE(715)] = 23679, + [SMALL_STATE(716)] = 23751, + [SMALL_STATE(717)] = 23799, + [SMALL_STATE(718)] = 23871, + [SMALL_STATE(719)] = 23943, + [SMALL_STATE(720)] = 24015, + [SMALL_STATE(721)] = 24087, + [SMALL_STATE(722)] = 24159, + [SMALL_STATE(723)] = 24231, + [SMALL_STATE(724)] = 24279, + [SMALL_STATE(725)] = 24351, + [SMALL_STATE(726)] = 24421, + [SMALL_STATE(727)] = 24493, + [SMALL_STATE(728)] = 24565, + [SMALL_STATE(729)] = 24637, + [SMALL_STATE(730)] = 24673, + [SMALL_STATE(731)] = 24745, + [SMALL_STATE(732)] = 24817, + [SMALL_STATE(733)] = 24865, + [SMALL_STATE(734)] = 24937, + [SMALL_STATE(735)] = 25009, + [SMALL_STATE(736)] = 25081, + [SMALL_STATE(737)] = 25153, + [SMALL_STATE(738)] = 25225, + [SMALL_STATE(739)] = 25297, + [SMALL_STATE(740)] = 25369, + [SMALL_STATE(741)] = 25441, [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(743)] = 25585, + [SMALL_STATE(744)] = 25657, + [SMALL_STATE(745)] = 25729, + [SMALL_STATE(746)] = 25798, + [SMALL_STATE(747)] = 25867, + [SMALL_STATE(748)] = 25936, + [SMALL_STATE(749)] = 25971, + [SMALL_STATE(750)] = 26040, + [SMALL_STATE(751)] = 26075, + [SMALL_STATE(752)] = 26110, + [SMALL_STATE(753)] = 26179, + [SMALL_STATE(754)] = 26214, + [SMALL_STATE(755)] = 26283, + [SMALL_STATE(756)] = 26352, + [SMALL_STATE(757)] = 26387, + [SMALL_STATE(758)] = 26456, + [SMALL_STATE(759)] = 26491, + [SMALL_STATE(760)] = 26560, + [SMALL_STATE(761)] = 26629, + [SMALL_STATE(762)] = 26696, + [SMALL_STATE(763)] = 26765, + [SMALL_STATE(764)] = 26834, + [SMALL_STATE(765)] = 26873, + [SMALL_STATE(766)] = 26942, + [SMALL_STATE(767)] = 26977, + [SMALL_STATE(768)] = 27012, + [SMALL_STATE(769)] = 27081, + [SMALL_STATE(770)] = 27116, + [SMALL_STATE(771)] = 27151, + [SMALL_STATE(772)] = 27220, + [SMALL_STATE(773)] = 27255, + [SMALL_STATE(774)] = 27290, + [SMALL_STATE(775)] = 27329, + [SMALL_STATE(776)] = 27372, + [SMALL_STATE(777)] = 27441, + [SMALL_STATE(778)] = 27494, + [SMALL_STATE(779)] = 27563, + [SMALL_STATE(780)] = 27598, + [SMALL_STATE(781)] = 27633, + [SMALL_STATE(782)] = 27668, + [SMALL_STATE(783)] = 27703, + [SMALL_STATE(784)] = 27738, + [SMALL_STATE(785)] = 27773, + [SMALL_STATE(786)] = 27842, + [SMALL_STATE(787)] = 27877, + [SMALL_STATE(788)] = 27912, + [SMALL_STATE(789)] = 27981, + [SMALL_STATE(790)] = 28050, + [SMALL_STATE(791)] = 28119, + [SMALL_STATE(792)] = 28188, + [SMALL_STATE(793)] = 28223, + [SMALL_STATE(794)] = 28292, + [SMALL_STATE(795)] = 28361, + [SMALL_STATE(796)] = 28410, + [SMALL_STATE(797)] = 28445, + [SMALL_STATE(798)] = 28480, + [SMALL_STATE(799)] = 28515, + [SMALL_STATE(800)] = 28550, + [SMALL_STATE(801)] = 28585, + [SMALL_STATE(802)] = 28624, + [SMALL_STATE(803)] = 28693, + [SMALL_STATE(804)] = 28762, + [SMALL_STATE(805)] = 28831, + [SMALL_STATE(806)] = 28896, + [SMALL_STATE(807)] = 28965, + [SMALL_STATE(808)] = 29034, + [SMALL_STATE(809)] = 29097, + [SMALL_STATE(810)] = 29160, + [SMALL_STATE(811)] = 29221, + [SMALL_STATE(812)] = 29256, + [SMALL_STATE(813)] = 29315, + [SMALL_STATE(814)] = 29384, + [SMALL_STATE(815)] = 29419, + [SMALL_STATE(816)] = 29454, + [SMALL_STATE(817)] = 29511, + [SMALL_STATE(818)] = 29546, + [SMALL_STATE(819)] = 29581, + [SMALL_STATE(820)] = 29616, + [SMALL_STATE(821)] = 29651, + [SMALL_STATE(822)] = 29720, + [SMALL_STATE(823)] = 29773, + [SMALL_STATE(824)] = 29824, + [SMALL_STATE(825)] = 29859, [SMALL_STATE(826)] = 29928, - [SMALL_STATE(827)] = 29981, - [SMALL_STATE(828)] = 30016, - [SMALL_STATE(829)] = 30051, + [SMALL_STATE(827)] = 29963, + [SMALL_STATE(828)] = 30032, + [SMALL_STATE(829)] = 30067, [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(832)] = 30210, + [SMALL_STATE(833)] = 30245, + [SMALL_STATE(834)] = 30284, + [SMALL_STATE(835)] = 30319, + [SMALL_STATE(836)] = 30354, + [SMALL_STATE(837)] = 30412, + [SMALL_STATE(838)] = 30467, + [SMALL_STATE(839)] = 30522, + [SMALL_STATE(840)] = 30577, + [SMALL_STATE(841)] = 30632, + [SMALL_STATE(842)] = 30687, + [SMALL_STATE(843)] = 30742, + [SMALL_STATE(844)] = 30797, + [SMALL_STATE(845)] = 30852, + [SMALL_STATE(846)] = 30907, + [SMALL_STATE(847)] = 30962, + [SMALL_STATE(848)] = 31017, + [SMALL_STATE(849)] = 31072, + [SMALL_STATE(850)] = 31118, + [SMALL_STATE(851)] = 31164, + [SMALL_STATE(852)] = 31210, + [SMALL_STATE(853)] = 31256, + [SMALL_STATE(854)] = 31291, + [SMALL_STATE(855)] = 31326, + [SMALL_STATE(856)] = 31377, + [SMALL_STATE(857)] = 31412, + [SMALL_STATE(858)] = 31447, + [SMALL_STATE(859)] = 31482, + [SMALL_STATE(860)] = 31530, + [SMALL_STATE(861)] = 31578, + [SMALL_STATE(862)] = 31626, + [SMALL_STATE(863)] = 31674, + [SMALL_STATE(864)] = 31722, + [SMALL_STATE(865)] = 31770, + [SMALL_STATE(866)] = 31818, + [SMALL_STATE(867)] = 31866, + [SMALL_STATE(868)] = 31900, + [SMALL_STATE(869)] = 31948, + [SMALL_STATE(870)] = 31977, + [SMALL_STATE(871)] = 32006, + [SMALL_STATE(872)] = 32035, + [SMALL_STATE(873)] = 32064, + [SMALL_STATE(874)] = 32093, + [SMALL_STATE(875)] = 32122, + [SMALL_STATE(876)] = 32155, + [SMALL_STATE(877)] = 32186, + [SMALL_STATE(878)] = 32215, + [SMALL_STATE(879)] = 32244, + [SMALL_STATE(880)] = 32273, + [SMALL_STATE(881)] = 32302, + [SMALL_STATE(882)] = 32331, + [SMALL_STATE(883)] = 32386, + [SMALL_STATE(884)] = 32415, + [SMALL_STATE(885)] = 32444, + [SMALL_STATE(886)] = 32473, + [SMALL_STATE(887)] = 32506, + [SMALL_STATE(888)] = 32535, + [SMALL_STATE(889)] = 32564, + [SMALL_STATE(890)] = 32607, + [SMALL_STATE(891)] = 32662, + [SMALL_STATE(892)] = 32691, + [SMALL_STATE(893)] = 32720, + [SMALL_STATE(894)] = 32749, + [SMALL_STATE(895)] = 32792, + [SMALL_STATE(896)] = 32821, + [SMALL_STATE(897)] = 32850, + [SMALL_STATE(898)] = 32878, + [SMALL_STATE(899)] = 32918, + [SMALL_STATE(900)] = 32958, + [SMALL_STATE(901)] = 32998, + [SMALL_STATE(902)] = 33038, + [SMALL_STATE(903)] = 33078, + [SMALL_STATE(904)] = 33118, + [SMALL_STATE(905)] = 33158, + [SMALL_STATE(906)] = 33198, + [SMALL_STATE(907)] = 33248, + [SMALL_STATE(908)] = 33288, + [SMALL_STATE(909)] = 33328, + [SMALL_STATE(910)] = 33368, + [SMALL_STATE(911)] = 33408, + [SMALL_STATE(912)] = 33448, + [SMALL_STATE(913)] = 33488, + [SMALL_STATE(914)] = 33516, + [SMALL_STATE(915)] = 33556, + [SMALL_STATE(916)] = 33584, + [SMALL_STATE(917)] = 33612, + [SMALL_STATE(918)] = 33652, + [SMALL_STATE(919)] = 33680, + [SMALL_STATE(920)] = 33720, + [SMALL_STATE(921)] = 33760, + [SMALL_STATE(922)] = 33800, + [SMALL_STATE(923)] = 33840, + [SMALL_STATE(924)] = 33880, + [SMALL_STATE(925)] = 33920, + [SMALL_STATE(926)] = 33960, + [SMALL_STATE(927)] = 34000, + [SMALL_STATE(928)] = 34040, + [SMALL_STATE(929)] = 34080, + [SMALL_STATE(930)] = 34120, + [SMALL_STATE(931)] = 34160, + [SMALL_STATE(932)] = 34200, + [SMALL_STATE(933)] = 34228, + [SMALL_STATE(934)] = 34256, + [SMALL_STATE(935)] = 34296, [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(938)] = 34424, + [SMALL_STATE(939)] = 34456, + [SMALL_STATE(940)] = 34484, + [SMALL_STATE(941)] = 34524, + [SMALL_STATE(942)] = 34564, + [SMALL_STATE(943)] = 34592, + [SMALL_STATE(944)] = 34640, + [SMALL_STATE(945)] = 34686, + [SMALL_STATE(946)] = 34732, + [SMALL_STATE(947)] = 34776, + [SMALL_STATE(948)] = 34818, + [SMALL_STATE(949)] = 34846, + [SMALL_STATE(950)] = 34882, + [SMALL_STATE(951)] = 34922, + [SMALL_STATE(952)] = 34956, + [SMALL_STATE(953)] = 34983, + [SMALL_STATE(954)] = 35010, + [SMALL_STATE(955)] = 35043, + [SMALL_STATE(956)] = 35088, + [SMALL_STATE(957)] = 35137, + [SMALL_STATE(958)] = 35164, + [SMALL_STATE(959)] = 35209, + [SMALL_STATE(960)] = 35254, + [SMALL_STATE(961)] = 35281, + [SMALL_STATE(962)] = 35316, + [SMALL_STATE(963)] = 35343, + [SMALL_STATE(964)] = 35380, + [SMALL_STATE(965)] = 35413, + [SMALL_STATE(966)] = 35452, + [SMALL_STATE(967)] = 35493, + [SMALL_STATE(968)] = 35538, + [SMALL_STATE(969)] = 35583, + [SMALL_STATE(970)] = 35628, + [SMALL_STATE(971)] = 35673, + [SMALL_STATE(972)] = 35716, + [SMALL_STATE(973)] = 35761, + [SMALL_STATE(974)] = 35788, + [SMALL_STATE(975)] = 35817, + [SMALL_STATE(976)] = 35844, + [SMALL_STATE(977)] = 35871, + [SMALL_STATE(978)] = 35916, + [SMALL_STATE(979)] = 35947, + [SMALL_STATE(980)] = 35974, [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(983)] = 36095, + [SMALL_STATE(984)] = 36134, + [SMALL_STATE(985)] = 36173, + [SMALL_STATE(986)] = 36212, + [SMALL_STATE(987)] = 36251, + [SMALL_STATE(988)] = 36290, + [SMALL_STATE(989)] = 36329, + [SMALL_STATE(990)] = 36368, + [SMALL_STATE(991)] = 36407, + [SMALL_STATE(992)] = 36446, + [SMALL_STATE(993)] = 36484, + [SMALL_STATE(994)] = 36522, + [SMALL_STATE(995)] = 36560, + [SMALL_STATE(996)] = 36598, + [SMALL_STATE(997)] = 36630, + [SMALL_STATE(998)] = 36668, + [SMALL_STATE(999)] = 36706, + [SMALL_STATE(1000)] = 36737, + [SMALL_STATE(1001)] = 36775, + [SMALL_STATE(1002)] = 36813, + [SMALL_STATE(1003)] = 36851, + [SMALL_STATE(1004)] = 36872, + [SMALL_STATE(1005)] = 36893, + [SMALL_STATE(1006)] = 36925, + [SMALL_STATE(1007)] = 36963, + [SMALL_STATE(1008)] = 37001, + [SMALL_STATE(1009)] = 37033, + [SMALL_STATE(1010)] = 37065, + [SMALL_STATE(1011)] = 37097, + [SMALL_STATE(1012)] = 37129, + [SMALL_STATE(1013)] = 37161, + [SMALL_STATE(1014)] = 37193, + [SMALL_STATE(1015)] = 37231, + [SMALL_STATE(1016)] = 37263, + [SMALL_STATE(1017)] = 37301, + [SMALL_STATE(1018)] = 37333, + [SMALL_STATE(1019)] = 37368, + [SMALL_STATE(1020)] = 37397, + [SMALL_STATE(1021)] = 37426, + [SMALL_STATE(1022)] = 37461, + [SMALL_STATE(1023)] = 37490, + [SMALL_STATE(1024)] = 37519, + [SMALL_STATE(1025)] = 37548, + [SMALL_STATE(1026)] = 37577, + [SMALL_STATE(1027)] = 37604, [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(1030)] = 37685, + [SMALL_STATE(1031)] = 37714, + [SMALL_STATE(1032)] = 37749, + [SMALL_STATE(1033)] = 37778, + [SMALL_STATE(1034)] = 37807, + [SMALL_STATE(1035)] = 37834, + [SMALL_STATE(1036)] = 37861, + [SMALL_STATE(1037)] = 37890, + [SMALL_STATE(1038)] = 37917, + [SMALL_STATE(1039)] = 37940, + [SMALL_STATE(1040)] = 37969, + [SMALL_STATE(1041)] = 37998, + [SMALL_STATE(1042)] = 38027, + [SMALL_STATE(1043)] = 38050, + [SMALL_STATE(1044)] = 38079, + [SMALL_STATE(1045)] = 38102, + [SMALL_STATE(1046)] = 38131, + [SMALL_STATE(1047)] = 38163, + [SMALL_STATE(1048)] = 38181, [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(1050)] = 38229, + [SMALL_STATE(1051)] = 38261, + [SMALL_STATE(1052)] = 38287, + [SMALL_STATE(1053)] = 38313, + [SMALL_STATE(1054)] = 38339, + [SMALL_STATE(1055)] = 38371, + [SMALL_STATE(1056)] = 38389, + [SMALL_STATE(1057)] = 38407, + [SMALL_STATE(1058)] = 38439, + [SMALL_STATE(1059)] = 38468, + [SMALL_STATE(1060)] = 38497, + [SMALL_STATE(1061)] = 38518, + [SMALL_STATE(1062)] = 38547, + [SMALL_STATE(1063)] = 38572, + [SMALL_STATE(1064)] = 38601, + [SMALL_STATE(1065)] = 38622, + [SMALL_STATE(1066)] = 38651, + [SMALL_STATE(1067)] = 38676, + [SMALL_STATE(1068)] = 38705, + [SMALL_STATE(1069)] = 38726, + [SMALL_STATE(1070)] = 38751, + [SMALL_STATE(1071)] = 38780, + [SMALL_STATE(1072)] = 38807, + [SMALL_STATE(1073)] = 38828, + [SMALL_STATE(1074)] = 38853, + [SMALL_STATE(1075)] = 38878, + [SMALL_STATE(1076)] = 38899, + [SMALL_STATE(1077)] = 38928, + [SMALL_STATE(1078)] = 38944, [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(1080)] = 38980, + [SMALL_STATE(1081)] = 38996, + [SMALL_STATE(1082)] = 39012, + [SMALL_STATE(1083)] = 39038, + [SMALL_STATE(1084)] = 39054, + [SMALL_STATE(1085)] = 39080, + [SMALL_STATE(1086)] = 39106, + [SMALL_STATE(1087)] = 39130, + [SMALL_STATE(1088)] = 39154, + [SMALL_STATE(1089)] = 39180, + [SMALL_STATE(1090)] = 39196, + [SMALL_STATE(1091)] = 39211, + [SMALL_STATE(1092)] = 39234, + [SMALL_STATE(1093)] = 39257, + [SMALL_STATE(1094)] = 39272, + [SMALL_STATE(1095)] = 39287, + [SMALL_STATE(1096)] = 39302, + [SMALL_STATE(1097)] = 39317, + [SMALL_STATE(1098)] = 39332, + [SMALL_STATE(1099)] = 39355, + [SMALL_STATE(1100)] = 39370, + [SMALL_STATE(1101)] = 39385, [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(1106)] = 39459, + [SMALL_STATE(1107)] = 39477, + [SMALL_STATE(1108)] = 39491, + [SMALL_STATE(1109)] = 39505, + [SMALL_STATE(1110)] = 39519, + [SMALL_STATE(1111)] = 39533, + [SMALL_STATE(1112)] = 39550, + [SMALL_STATE(1113)] = 39569, + [SMALL_STATE(1114)] = 39588, + [SMALL_STATE(1115)] = 39607, + [SMALL_STATE(1116)] = 39624, + [SMALL_STATE(1117)] = 39643, + [SMALL_STATE(1118)] = 39660, + [SMALL_STATE(1119)] = 39679, + [SMALL_STATE(1120)] = 39696, + [SMALL_STATE(1121)] = 39712, + [SMALL_STATE(1122)] = 39728, + [SMALL_STATE(1123)] = 39738, + [SMALL_STATE(1124)] = 39748, + [SMALL_STATE(1125)] = 39764, + [SMALL_STATE(1126)] = 39774, + [SMALL_STATE(1127)] = 39790, + [SMALL_STATE(1128)] = 39806, + [SMALL_STATE(1129)] = 39822, + [SMALL_STATE(1130)] = 39836, + [SMALL_STATE(1131)] = 39852, + [SMALL_STATE(1132)] = 39866, + [SMALL_STATE(1133)] = 39882, + [SMALL_STATE(1134)] = 39898, + [SMALL_STATE(1135)] = 39914, + [SMALL_STATE(1136)] = 39924, + [SMALL_STATE(1137)] = 39940, + [SMALL_STATE(1138)] = 39950, + [SMALL_STATE(1139)] = 39966, + [SMALL_STATE(1140)] = 39976, + [SMALL_STATE(1141)] = 39986, + [SMALL_STATE(1142)] = 39996, + [SMALL_STATE(1143)] = 40012, + [SMALL_STATE(1144)] = 40022, + [SMALL_STATE(1145)] = 40038, + [SMALL_STATE(1146)] = 40054, + [SMALL_STATE(1147)] = 40070, + [SMALL_STATE(1148)] = 40086, + [SMALL_STATE(1149)] = 40096, + [SMALL_STATE(1150)] = 40112, + [SMALL_STATE(1151)] = 40122, + [SMALL_STATE(1152)] = 40132, + [SMALL_STATE(1153)] = 40148, + [SMALL_STATE(1154)] = 40164, + [SMALL_STATE(1155)] = 40177, + [SMALL_STATE(1156)] = 40190, + [SMALL_STATE(1157)] = 40203, + [SMALL_STATE(1158)] = 40216, + [SMALL_STATE(1159)] = 40227, + [SMALL_STATE(1160)] = 40240, + [SMALL_STATE(1161)] = 40253, + [SMALL_STATE(1162)] = 40266, + [SMALL_STATE(1163)] = 40279, + [SMALL_STATE(1164)] = 40292, + [SMALL_STATE(1165)] = 40305, + [SMALL_STATE(1166)] = 40318, + [SMALL_STATE(1167)] = 40331, + [SMALL_STATE(1168)] = 40344, + [SMALL_STATE(1169)] = 40357, + [SMALL_STATE(1170)] = 40370, + [SMALL_STATE(1171)] = 40383, [SMALL_STATE(1172)] = 40392, [SMALL_STATE(1173)] = 40405, [SMALL_STATE(1174)] = 40418, @@ -73737,276 +73755,277 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1185)] = 40561, [SMALL_STATE(1186)] = 40574, [SMALL_STATE(1187)] = 40587, - [SMALL_STATE(1188)] = 40600, - [SMALL_STATE(1189)] = 40613, + [SMALL_STATE(1188)] = 40596, + [SMALL_STATE(1189)] = 40609, [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(1195)] = 40685, + [SMALL_STATE(1196)] = 40698, + [SMALL_STATE(1197)] = 40711, + [SMALL_STATE(1198)] = 40724, + [SMALL_STATE(1199)] = 40737, + [SMALL_STATE(1200)] = 40750, + [SMALL_STATE(1201)] = 40763, + [SMALL_STATE(1202)] = 40776, + [SMALL_STATE(1203)] = 40789, [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(1206)] = 40828, + [SMALL_STATE(1207)] = 40841, + [SMALL_STATE(1208)] = 40854, + [SMALL_STATE(1209)] = 40867, + [SMALL_STATE(1210)] = 40880, + [SMALL_STATE(1211)] = 40893, + [SMALL_STATE(1212)] = 40906, + [SMALL_STATE(1213)] = 40919, + [SMALL_STATE(1214)] = 40932, + [SMALL_STATE(1215)] = 40942, + [SMALL_STATE(1216)] = 40950, + [SMALL_STATE(1217)] = 40958, + [SMALL_STATE(1218)] = 40968, + [SMALL_STATE(1219)] = 40978, + [SMALL_STATE(1220)] = 40986, + [SMALL_STATE(1221)] = 40994, [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(1227)] = 41050, + [SMALL_STATE(1228)] = 41058, + [SMALL_STATE(1229)] = 41068, + [SMALL_STATE(1230)] = 41076, + [SMALL_STATE(1231)] = 41084, + [SMALL_STATE(1232)] = 41092, + [SMALL_STATE(1233)] = 41100, + [SMALL_STATE(1234)] = 41110, + [SMALL_STATE(1235)] = 41118, + [SMALL_STATE(1236)] = 41128, + [SMALL_STATE(1237)] = 41136, + [SMALL_STATE(1238)] = 41146, + [SMALL_STATE(1239)] = 41156, + [SMALL_STATE(1240)] = 41166, + [SMALL_STATE(1241)] = 41176, + [SMALL_STATE(1242)] = 41186, + [SMALL_STATE(1243)] = 41196, + [SMALL_STATE(1244)] = 41204, + [SMALL_STATE(1245)] = 41214, + [SMALL_STATE(1246)] = 41222, + [SMALL_STATE(1247)] = 41232, + [SMALL_STATE(1248)] = 41242, + [SMALL_STATE(1249)] = 41252, + [SMALL_STATE(1250)] = 41260, + [SMALL_STATE(1251)] = 41268, + [SMALL_STATE(1252)] = 41276, + [SMALL_STATE(1253)] = 41286, + [SMALL_STATE(1254)] = 41296, + [SMALL_STATE(1255)] = 41306, + [SMALL_STATE(1256)] = 41316, + [SMALL_STATE(1257)] = 41326, + [SMALL_STATE(1258)] = 41336, + [SMALL_STATE(1259)] = 41346, [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(1262)] = 41376, + [SMALL_STATE(1263)] = 41386, + [SMALL_STATE(1264)] = 41396, + [SMALL_STATE(1265)] = 41406, + [SMALL_STATE(1266)] = 41416, + [SMALL_STATE(1267)] = 41426, + [SMALL_STATE(1268)] = 41436, [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, + [SMALL_STATE(1270)] = 41454, + [SMALL_STATE(1271)] = 41464, + [SMALL_STATE(1272)] = 41474, + [SMALL_STATE(1273)] = 41484, + [SMALL_STATE(1274)] = 41494, + [SMALL_STATE(1275)] = 41504, + [SMALL_STATE(1276)] = 41514, + [SMALL_STATE(1277)] = 41521, + [SMALL_STATE(1278)] = 41528, + [SMALL_STATE(1279)] = 41535, + [SMALL_STATE(1280)] = 41542, + [SMALL_STATE(1281)] = 41549, + [SMALL_STATE(1282)] = 41556, + [SMALL_STATE(1283)] = 41563, + [SMALL_STATE(1284)] = 41570, + [SMALL_STATE(1285)] = 41577, + [SMALL_STATE(1286)] = 41584, + [SMALL_STATE(1287)] = 41591, + [SMALL_STATE(1288)] = 41598, + [SMALL_STATE(1289)] = 41605, + [SMALL_STATE(1290)] = 41612, + [SMALL_STATE(1291)] = 41619, + [SMALL_STATE(1292)] = 41626, + [SMALL_STATE(1293)] = 41633, + [SMALL_STATE(1294)] = 41640, + [SMALL_STATE(1295)] = 41647, + [SMALL_STATE(1296)] = 41654, + [SMALL_STATE(1297)] = 41661, + [SMALL_STATE(1298)] = 41668, + [SMALL_STATE(1299)] = 41675, + [SMALL_STATE(1300)] = 41682, + [SMALL_STATE(1301)] = 41689, + [SMALL_STATE(1302)] = 41696, + [SMALL_STATE(1303)] = 41703, + [SMALL_STATE(1304)] = 41710, + [SMALL_STATE(1305)] = 41717, + [SMALL_STATE(1306)] = 41724, + [SMALL_STATE(1307)] = 41731, + [SMALL_STATE(1308)] = 41738, + [SMALL_STATE(1309)] = 41745, + [SMALL_STATE(1310)] = 41752, + [SMALL_STATE(1311)] = 41759, + [SMALL_STATE(1312)] = 41766, + [SMALL_STATE(1313)] = 41773, + [SMALL_STATE(1314)] = 41780, + [SMALL_STATE(1315)] = 41787, + [SMALL_STATE(1316)] = 41794, + [SMALL_STATE(1317)] = 41801, + [SMALL_STATE(1318)] = 41808, + [SMALL_STATE(1319)] = 41815, + [SMALL_STATE(1320)] = 41822, + [SMALL_STATE(1321)] = 41829, + [SMALL_STATE(1322)] = 41836, + [SMALL_STATE(1323)] = 41843, + [SMALL_STATE(1324)] = 41850, + [SMALL_STATE(1325)] = 41857, + [SMALL_STATE(1326)] = 41864, + [SMALL_STATE(1327)] = 41871, + [SMALL_STATE(1328)] = 41878, + [SMALL_STATE(1329)] = 41885, + [SMALL_STATE(1330)] = 41892, + [SMALL_STATE(1331)] = 41899, + [SMALL_STATE(1332)] = 41906, + [SMALL_STATE(1333)] = 41913, + [SMALL_STATE(1334)] = 41920, + [SMALL_STATE(1335)] = 41927, + [SMALL_STATE(1336)] = 41934, + [SMALL_STATE(1337)] = 41941, + [SMALL_STATE(1338)] = 41948, + [SMALL_STATE(1339)] = 41955, + [SMALL_STATE(1340)] = 41962, + [SMALL_STATE(1341)] = 41969, + [SMALL_STATE(1342)] = 41976, + [SMALL_STATE(1343)] = 41983, + [SMALL_STATE(1344)] = 41990, + [SMALL_STATE(1345)] = 41997, + [SMALL_STATE(1346)] = 42004, + [SMALL_STATE(1347)] = 42011, + [SMALL_STATE(1348)] = 42018, + [SMALL_STATE(1349)] = 42025, + [SMALL_STATE(1350)] = 42032, + [SMALL_STATE(1351)] = 42039, + [SMALL_STATE(1352)] = 42046, + [SMALL_STATE(1353)] = 42053, + [SMALL_STATE(1354)] = 42060, + [SMALL_STATE(1355)] = 42067, + [SMALL_STATE(1356)] = 42074, + [SMALL_STATE(1357)] = 42081, + [SMALL_STATE(1358)] = 42088, + [SMALL_STATE(1359)] = 42095, + [SMALL_STATE(1360)] = 42102, + [SMALL_STATE(1361)] = 42109, + [SMALL_STATE(1362)] = 42116, + [SMALL_STATE(1363)] = 42123, + [SMALL_STATE(1364)] = 42130, + [SMALL_STATE(1365)] = 42137, + [SMALL_STATE(1366)] = 42144, + [SMALL_STATE(1367)] = 42151, + [SMALL_STATE(1368)] = 42158, + [SMALL_STATE(1369)] = 42165, + [SMALL_STATE(1370)] = 42172, + [SMALL_STATE(1371)] = 42179, + [SMALL_STATE(1372)] = 42186, + [SMALL_STATE(1373)] = 42193, + [SMALL_STATE(1374)] = 42200, + [SMALL_STATE(1375)] = 42207, + [SMALL_STATE(1376)] = 42214, + [SMALL_STATE(1377)] = 42221, + [SMALL_STATE(1378)] = 42228, + [SMALL_STATE(1379)] = 42235, + [SMALL_STATE(1380)] = 42242, + [SMALL_STATE(1381)] = 42249, + [SMALL_STATE(1382)] = 42256, + [SMALL_STATE(1383)] = 42263, + [SMALL_STATE(1384)] = 42270, + [SMALL_STATE(1385)] = 42277, + [SMALL_STATE(1386)] = 42284, + [SMALL_STATE(1387)] = 42291, + [SMALL_STATE(1388)] = 42298, + [SMALL_STATE(1389)] = 42305, + [SMALL_STATE(1390)] = 42312, + [SMALL_STATE(1391)] = 42319, + [SMALL_STATE(1392)] = 42326, + [SMALL_STATE(1393)] = 42333, + [SMALL_STATE(1394)] = 42340, + [SMALL_STATE(1395)] = 42347, + [SMALL_STATE(1396)] = 42354, + [SMALL_STATE(1397)] = 42361, + [SMALL_STATE(1398)] = 42368, + [SMALL_STATE(1399)] = 42375, + [SMALL_STATE(1400)] = 42382, + [SMALL_STATE(1401)] = 42389, + [SMALL_STATE(1402)] = 42396, + [SMALL_STATE(1403)] = 42403, + [SMALL_STATE(1404)] = 42410, + [SMALL_STATE(1405)] = 42417, + [SMALL_STATE(1406)] = 42424, + [SMALL_STATE(1407)] = 42431, + [SMALL_STATE(1408)] = 42438, + [SMALL_STATE(1409)] = 42445, + [SMALL_STATE(1410)] = 42452, + [SMALL_STATE(1411)] = 42459, + [SMALL_STATE(1412)] = 42466, + [SMALL_STATE(1413)] = 42473, + [SMALL_STATE(1414)] = 42480, + [SMALL_STATE(1415)] = 42487, + [SMALL_STATE(1416)] = 42494, + [SMALL_STATE(1417)] = 42501, + [SMALL_STATE(1418)] = 42508, + [SMALL_STATE(1419)] = 42515, + [SMALL_STATE(1420)] = 42522, + [SMALL_STATE(1421)] = 42529, + [SMALL_STATE(1422)] = 42536, + [SMALL_STATE(1423)] = 42543, + [SMALL_STATE(1424)] = 42550, + [SMALL_STATE(1425)] = 42557, + [SMALL_STATE(1426)] = 42564, + [SMALL_STATE(1427)] = 42571, + [SMALL_STATE(1428)] = 42578, + [SMALL_STATE(1429)] = 42585, + [SMALL_STATE(1430)] = 42592, + [SMALL_STATE(1431)] = 42599, + [SMALL_STATE(1432)] = 42606, + [SMALL_STATE(1433)] = 42613, + [SMALL_STATE(1434)] = 42620, + [SMALL_STATE(1435)] = 42627, + [SMALL_STATE(1436)] = 42634, + [SMALL_STATE(1437)] = 42641, + [SMALL_STATE(1438)] = 42648, + [SMALL_STATE(1439)] = 42655, + [SMALL_STATE(1440)] = 42662, + [SMALL_STATE(1441)] = 42669, + [SMALL_STATE(1442)] = 42676, + [SMALL_STATE(1443)] = 42683, + [SMALL_STATE(1444)] = 42690, + [SMALL_STATE(1445)] = 42697, + [SMALL_STATE(1446)] = 42704, + [SMALL_STATE(1447)] = 42711, + [SMALL_STATE(1448)] = 42718, + [SMALL_STATE(1449)] = 42725, + [SMALL_STATE(1450)] = 42732, + [SMALL_STATE(1451)] = 42739, + [SMALL_STATE(1452)] = 42746, + [SMALL_STATE(1453)] = 42753, + [SMALL_STATE(1454)] = 42760, + [SMALL_STATE(1455)] = 42767, + [SMALL_STATE(1456)] = 42774, + [SMALL_STATE(1457)] = 42781, + [SMALL_STATE(1458)] = 42788, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -74014,359 +74033,359 @@ 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(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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), [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), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), [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), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), [99] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), [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), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), [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), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), [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), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), [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), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), [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), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), [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), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(411), + [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(1370), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(930), [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(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), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1371), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1214), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(382), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(586), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(586), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(578), [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), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(868), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(833), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1454), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1275), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1451), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(896), [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), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(687), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(676), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(775), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(881), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1208), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1116), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1114), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1241), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(594), [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), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(316), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1456), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(453), [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), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1377), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(524), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(522), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(549), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1268), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1132), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(549), [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), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), [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), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), [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), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), [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), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), [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), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), [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), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), [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), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), [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), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), [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), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1060), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1309), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(924), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1310), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), [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), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(864), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(801), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), [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), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1238), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1274), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(528), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1374), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1242), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(333), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), [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), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1381), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1384), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1316), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(410), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1068), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1414), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(937), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1397), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1261), [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), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(861), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(764), [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), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1224), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(523), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1308), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1225), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(313), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1458), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(467), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1288), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1296), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1401), [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), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(406), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1075), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1400), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(899), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1457), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1223), [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), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(830), [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), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1272), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1271), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(508), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1443), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1270), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(306), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1440), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(449), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1439), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1437), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1436), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), [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(406), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(407), [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(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), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(382), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(586), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(586), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(578), [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), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(868), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(687), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1454), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1275), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1451), [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), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(676), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(775), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(881), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1208), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1116), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1114), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1248), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1241), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1247), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(316), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1456), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(453), [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), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1377), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(524), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(522), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(549), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1268), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1132), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(549), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), [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), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(405), [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), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1272), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1271), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1270), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(306), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1440), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(449), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1439), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1437), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1436), [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), [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), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(409), [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), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(861), [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), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1224), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1256), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1225), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(313), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1458), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(467), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1288), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1296), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1401), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(408), [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), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(864), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1238), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1274), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1242), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(333), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1453), [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), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1381), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1384), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1316), [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), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), - [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), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), [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, 8, .production_id = 80), @@ -74383,7 +74402,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), [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), @@ -74466,12 +74485,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), [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), @@ -74486,1093 +74505,1093 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), [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), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), [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), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), [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), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), [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), + [1244] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(855), [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), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(876), + [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1415), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(931), [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 = 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), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1344), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1264), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(687), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1454), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1273), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1451), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(676), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(775), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(881), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1208), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1116), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1114), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1416), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(904), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1386), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1267), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1396), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(917), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1368), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1222), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), [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), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), [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(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), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1132), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), [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_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_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(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), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1239), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(687), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1454), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1273), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1451), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(676), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(667), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 60), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 73), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), [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(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), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), [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 = 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), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(774), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(891), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(855), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(676), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2414] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(855), + [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), [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), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), [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), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), [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), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1454), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 71), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1275), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [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, 5, .dynamic_precedence = 1, .production_id = 71), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 71), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 72), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 72), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 64), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 64), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), [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), + [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}}, REDUCE(sym__field_declarator, 1), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), [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 = 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(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_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(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), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 72), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 72), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(606), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1283), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 56), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 57), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1022), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 72), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 64), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 67), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1152), + [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1152), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1218), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(570), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(934), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1220), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(620), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 68), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(421), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1033), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), [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), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1244), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1005), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), [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), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), [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), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), [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), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), [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), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), [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), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), [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), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), [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), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 54), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 66), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), [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), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), [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), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), [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), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), [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), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), [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), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), [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), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), [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), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), [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), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), }; diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index df4a7f8eea..b2bceab71f 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -295,7 +295,7 @@ static baz quux(...); (declaration (storage_class_specifier) (type_identifier) - (function_declarator (identifier) (parameter_list)))) + (function_declarator (identifier) (parameter_list (variadic_parameter))))) ============================================ Function definitions @@ -470,7 +470,7 @@ typedef int MyInt [[deprecated]]; (declaration (primitive_type) (function_declarator (identifier) - (parameter_list (parameter_declaration (type_qualifier) (primitive_type) (pointer_declarator (identifier)))) + (parameter_list (parameter_declaration (type_qualifier) (primitive_type) (pointer_declarator (identifier))) (variadic_parameter)) (attribute_specifier (argument_list (identifier))) (attribute_specifier (argument_list (call_expression (identifier) (argument_list (identifier) (number_literal) (number_literal)))))))