From 9b715a2620a8006bc2abd8b8e61510fcf8b0af7e Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 19 Jun 2017 17:10:45 -0700 Subject: [PATCH] Add concatenated strings --- corpus/expressions.txt | 19 + grammar.js | 6 + src/grammar.json | 20 + src/parser.c | 55440 ++++++++++++++++++++------------------- 4 files changed, 28108 insertions(+), 27377 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index fe12203..b95efc1 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -49,6 +49,25 @@ int main() { (compound_statement (expression_statement (call_expression (identifier) (string_literal) (identifier)))))) +============================================ +String literals +============================================ + +int main() { + "a"; + "b" "c" "d"; +} + +--- + +(translation_unit + (function_definition + (identifier) + (function_declarator (identifier)) + (compound_statement + (expression_statement (string_literal)) + (expression_statement (concatenated_string (string_literal) (string_literal) (string_literal)))))) + ============================================ Character literals ============================================ diff --git a/grammar.js b/grammar.js index b97b383..46873f1 100644 --- a/grammar.js +++ b/grammar.js @@ -449,6 +449,7 @@ module.exports = grammar({ $.identifier, $.number_literal, $.string_literal, + $.concatenated_string, $.char_literal, $.parenthesized_expression ), @@ -609,6 +610,11 @@ module.exports = grammar({ '\'' )), + concatenated_string: $ => seq( + $.string_literal, + repeat1($.string_literal) + ), + string_literal: $ => token(seq( '"', repeat(choice(/[^"]/, '\\"')), diff --git a/src/grammar.json b/src/grammar.json index 05afd66..e4c60e4 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1891,6 +1891,10 @@ "type": "SYMBOL", "name": "string_literal" }, + { + "type": "SYMBOL", + "name": "concatenated_string" + }, { "type": "SYMBOL", "name": "char_literal" @@ -3075,6 +3079,22 @@ ] } }, + "concatenated_string": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + } + ] + }, "string_literal": { "type": "TOKEN", "content": { diff --git a/src/parser.c b/src/parser.c index 81fbc5a..52938fe 100644 --- a/src/parser.c +++ b/src/parser.c @@ -4,8 +4,8 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #define LANGUAGE_VERSION 2 -#define STATE_COUNT 1118 -#define SYMBOL_COUNT 177 +#define STATE_COUNT 1122 +#define SYMBOL_COUNT 179 #define TOKEN_COUNT 91 #define EXTERNAL_TOKEN_COUNT 0 @@ -172,20 +172,22 @@ enum { sym_initializer_list = 160, sym__initializer_list_contents = 161, sym_designator = 162, - sym__empty_declaration = 163, - sym_macro_type_specifier = 164, - aux_sym_translation_unit_repeat1 = 165, - aux_sym_preproc_params_repeat1 = 166, - aux_sym_declaration_repeat1 = 167, - aux_sym__declaration_specifiers_repeat1 = 168, - aux_sym_array_declarator_repeat1 = 169, - aux_sym_compound_statement_repeat1 = 170, - aux_sym_sized_type_specifier_repeat1 = 171, - aux_sym_struct_specifier_repeat1 = 172, - aux_sym_struct_declaration_repeat1 = 173, - aux_sym_parameter_type_list_repeat1 = 174, - aux_sym_for_statement_repeat1 = 175, - aux_sym__initializer_list_contents_repeat1 = 176, + sym_concatenated_string = 163, + sym__empty_declaration = 164, + sym_macro_type_specifier = 165, + aux_sym_translation_unit_repeat1 = 166, + aux_sym_preproc_params_repeat1 = 167, + aux_sym_declaration_repeat1 = 168, + aux_sym__declaration_specifiers_repeat1 = 169, + aux_sym_array_declarator_repeat1 = 170, + aux_sym_compound_statement_repeat1 = 171, + aux_sym_sized_type_specifier_repeat1 = 172, + aux_sym_struct_specifier_repeat1 = 173, + aux_sym_struct_declaration_repeat1 = 174, + aux_sym_parameter_type_list_repeat1 = 175, + aux_sym_for_statement_repeat1 = 176, + aux_sym__initializer_list_contents_repeat1 = 177, + aux_sym_concatenated_string_repeat1 = 178, }; static const char *ts_symbol_names[] = { @@ -352,6 +354,7 @@ static const char *ts_symbol_names[] = { [sym_initializer_list] = "initializer_list", [sym__initializer_list_contents] = "_initializer_list_contents", [sym_designator] = "designator", + [sym_concatenated_string] = "concatenated_string", [sym__empty_declaration] = "_empty_declaration", [sym_macro_type_specifier] = "macro_type_specifier", [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", @@ -366,6 +369,7 @@ static const char *ts_symbol_names[] = { [aux_sym_parameter_type_list_repeat1] = "parameter_type_list_repeat1", [aux_sym_for_statement_repeat1] = "for_statement_repeat1", [aux_sym__initializer_list_contents_repeat1] = "_initializer_list_contents_repeat1", + [aux_sym_concatenated_string_repeat1] = "concatenated_string_repeat1", }; static const TSSymbolMetadata ts_symbol_metadata[SYMBOL_COUNT] = { @@ -1347,6 +1351,12 @@ static const TSSymbolMetadata ts_symbol_metadata[SYMBOL_COUNT] = { .structural = true, .extra = false, }, + [sym_concatenated_string] = { + .visible = true, + .named = true, + .structural = true, + .extra = false, + }, [sym__empty_declaration] = { .visible = false, .named = true, @@ -1431,6 +1441,12 @@ static const TSSymbolMetadata ts_symbol_metadata[SYMBOL_COUNT] = { .structural = true, .extra = false, }, + [aux_sym_concatenated_string_repeat1] = { + .visible = false, + .named = false, + .structural = true, + .extra = false, + }, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -4989,12 +5005,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(307); if (lookahead == '!') ADVANCE(306); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '%') ADVANCE(39); if (lookahead == '&') ADVANCE(41); if (lookahead == '(') ADVANCE(49); + if (lookahead == ')') + ADVANCE(50); if (lookahead == '*') ADVANCE(51); if (lookahead == '+') @@ -5007,6 +5027,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(303); if (lookahead == '/') ADVANCE(64); + if (lookahead == ':') + ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') @@ -5019,10 +5041,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(91); if (lookahead == '[') ADVANCE(93); + if (lookahead == ']') + ADVANCE(94); if (lookahead == '^') ADVANCE(95); if (lookahead == '|') ADVANCE(231); + if (lookahead == '}') + ADVANCE(234); END_STATE(); case 308: if ((lookahead == '\t') || @@ -5030,6 +5056,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\r') || (lookahead == ' ')) SKIP(308); + if (lookahead == '!') + ADVANCE(306); + if (lookahead == '%') + ADVANCE(39); + if (lookahead == '&') + ADVANCE(41); + if (lookahead == '(') + ADVANCE(49); + if (lookahead == '*') + ADVANCE(51); + if (lookahead == '+') + ADVANCE(53); + if (lookahead == ',') + ADVANCE(56); + if (lookahead == '-') + ADVANCE(57); + if (lookahead == '.') + ADVANCE(303); + if (lookahead == '/') + ADVANCE(64); + if (lookahead == ';') + ADVANCE(80); + if (lookahead == '<') + ADVANCE(81); + if (lookahead == '=') + ADVANCE(85); + if (lookahead == '>') + ADVANCE(87); + if (lookahead == '?') + ADVANCE(91); + if (lookahead == '[') + ADVANCE(93); + if (lookahead == '^') + ADVANCE(95); + if (lookahead == '|') + ADVANCE(231); + END_STATE(); + case 309: + if ((lookahead == '\t') || + (lookahead == '\n') || + (lookahead == '\r') || + (lookahead == ' ')) + SKIP(309); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -5064,12 +5133,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 309: + case 310: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(309); + SKIP(310); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -5105,12 +5174,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 310: + case 311: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(310); + SKIP(311); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -5146,12 +5215,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 311: + case 312: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(311); + SKIP(312); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -5189,12 +5258,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 312: + case 313: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(312); + SKIP(313); if (lookahead == ')') ADVANCE(50); if (lookahead == ',') @@ -5202,12 +5271,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(238); END_STATE(); - case 313: + case 314: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(313); + SKIP(314); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -5259,12 +5328,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 314: + case 315: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(314); + SKIP(315); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -5276,23 +5345,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 315: + case 316: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(315); + SKIP(316); if (lookahead == ')') ADVANCE(50); if (lookahead == '/') ADVANCE(238); END_STATE(); - case 316: + case 317: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(316); + SKIP(317); if (lookahead == '/') ADVANCE(238); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5320,12 +5389,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(217); END_STATE(); - case 317: + case 318: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(317); + SKIP(318); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -5350,12 +5419,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(273); END_STATE(); - case 318: + case 319: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(318); + SKIP(319); if (lookahead == '(') ADVANCE(49); if (lookahead == '*') @@ -5365,12 +5434,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 319: + case 320: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(319); + SKIP(320); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -5380,12 +5449,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 320: + case 321: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(320); + SKIP(321); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -5397,12 +5466,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 321: + case 322: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(321); + SKIP(322); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -5447,12 +5516,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 322: + case 323: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(322); + SKIP(323); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -5470,12 +5539,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 323: + case 324: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(323); + SKIP(324); if (lookahead == '.') ADVANCE(292); if (lookahead == '/') @@ -5511,12 +5580,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(217); END_STATE(); - case 324: + case 325: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(324); + SKIP(325); if (lookahead == '(') ADVANCE(49); if (lookahead == '*') @@ -5530,12 +5599,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 325: + case 326: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(325); + SKIP(326); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -5551,12 +5620,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 326: + case 327: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(326); + SKIP(327); if (lookahead == '/') ADVANCE(238); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5586,12 +5655,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 327: + case 328: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(327); + SKIP(328); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -5615,12 +5684,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(230); END_STATE(); - case 328: + case 329: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(328); + SKIP(329); if (lookahead == '(') ADVANCE(49); if (lookahead == '*') @@ -5636,12 +5705,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); END_STATE(); - case 329: + case 330: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(329); + SKIP(330); if (lookahead == '(') ADVANCE(49); if (lookahead == ',') @@ -5655,12 +5724,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 330: + case 331: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(330); + SKIP(331); if (lookahead == ',') ADVANCE(56); if (lookahead == '/') @@ -5670,12 +5739,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(80); END_STATE(); - case 331: + case 332: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(331); + SKIP(332); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -5711,12 +5780,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 332: + case 333: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(332); + SKIP(333); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -5771,12 +5840,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 333: + case 334: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(333); + SKIP(334); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -5814,12 +5883,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 334: + case 335: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(334); + SKIP(335); if (lookahead == ',') ADVANCE(56); if (lookahead == '/') @@ -5827,12 +5896,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 335: + case 336: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(335); + SKIP(336); if (lookahead == '.') ADVANCE(303); if (lookahead == '/') @@ -5842,12 +5911,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 336: + case 337: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(336); + SKIP(337); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -5904,12 +5973,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 337: + case 338: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(337); + SKIP(338); if (lookahead == ')') ADVANCE(50); if (lookahead == '/') @@ -5917,12 +5986,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(80); END_STATE(); - case 338: + case 339: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(338); + SKIP(339); if (lookahead == ',') ADVANCE(56); if (lookahead == '/') @@ -5932,12 +6001,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 339: + case 340: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(339); + SKIP(340); if (lookahead == '/') ADVANCE(238); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5947,12 +6016,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 340: + case 341: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(340); + SKIP(341); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6009,12 +6078,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 341: + case 342: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(341); + SKIP(342); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6069,12 +6138,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 342: + case 343: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(342); + SKIP(343); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6129,12 +6198,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 343: + case 344: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(343); + SKIP(344); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6191,12 +6260,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 344: + case 345: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(344); + SKIP(345); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -6266,12 +6335,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 345: + case 346: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(345); + SKIP(346); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -6341,14 +6410,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 346: + case 347: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(346); + SKIP(347); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -6420,34 +6489,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 347: + case 348: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(347); + SKIP(348); if (lookahead == '(') ADVANCE(49); if (lookahead == '/') ADVANCE(238); END_STATE(); - case 348: + case 349: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(348); + SKIP(349); if (lookahead == '/') ADVANCE(238); if (lookahead == ':') ADVANCE(79); END_STATE(); - case 349: + case 350: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(349); + SKIP(350); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -6484,7 +6553,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(101); if (lookahead == 'c') - ADVANCE(350); + ADVANCE(351); if (lookahead == 'd') ADVANCE(119); if (lookahead == 'f') @@ -6492,11 +6561,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(142); if (lookahead == 'i') - ADVANCE(353); - if (lookahead == 'r') ADVANCE(354); + if (lookahead == 'r') + ADVANCE(355); if (lookahead == 's') - ADVANCE(356); + ADVANCE(357); if (lookahead == 'w') ADVANCE(225); if (lookahead == '{') @@ -6504,7 +6573,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 350: + case 351: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6515,9 +6584,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(107); if (lookahead == 'o') - ADVANCE(351); + ADVANCE(352); END_STATE(); - case 351: + case 352: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6526,9 +6595,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'z')) ADVANCE(92); if (lookahead == 'n') - ADVANCE(352); + ADVANCE(353); END_STATE(); - case 352: + case 353: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6539,7 +6608,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(114); END_STATE(); - case 353: + case 354: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6550,7 +6619,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'f') ADVANCE(147); END_STATE(); - case 354: + case 355: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6559,9 +6628,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('f' <= lookahead && lookahead <= 'z')) ADVANCE(92); if (lookahead == 'e') - ADVANCE(355); + ADVANCE(356); END_STATE(); - case 355: + case 356: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6572,7 +6641,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(171); END_STATE(); - case 356: + case 357: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6586,12 +6655,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(194); END_STATE(); - case 357: + case 358: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(357); + SKIP(358); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -6626,23 +6695,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 358: + case 359: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(358); + SKIP(359); if (lookahead == '/') ADVANCE(238); if (lookahead == ';') ADVANCE(80); END_STATE(); - case 359: + case 360: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(359); + SKIP(360); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -6688,12 +6757,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 360: + case 361: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(360); + SKIP(361); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -6733,12 +6802,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 361: + case 362: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(361); + SKIP(362); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -6796,12 +6865,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 362: + case 363: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(362); + SKIP(363); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -6841,42 +6910,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 363: + case 364: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(363); + SKIP(364); if (lookahead == '/') ADVANCE(238); if (lookahead == 'w') - ADVANCE(364); - END_STATE(); - case 364: - if (lookahead == 'h') ADVANCE(365); END_STATE(); case 365: - if (lookahead == 'i') + if (lookahead == 'h') ADVANCE(366); END_STATE(); case 366: - if (lookahead == 'l') + if (lookahead == 'i') ADVANCE(367); END_STATE(); case 367: - if (lookahead == 'e') + if (lookahead == 'l') ADVANCE(368); END_STATE(); case 368: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'e') + ADVANCE(369); END_STATE(); case 369: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 370: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(369); + SKIP(370); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -6912,12 +6981,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 370: + case 371: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(370); + SKIP(371); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6972,40 +7041,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 371: + case 372: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(371); + SKIP(372); if (lookahead == '/') ADVANCE(238); if (lookahead == 'e') - ADVANCE(372); - if (lookahead == 'w') - ADVANCE(364); - END_STATE(); - case 372: - if (lookahead == 'l') ADVANCE(373); + if (lookahead == 'w') + ADVANCE(365); END_STATE(); case 373: - if (lookahead == 's') + if (lookahead == 'l') ADVANCE(374); END_STATE(); case 374: - if (lookahead == 'e') + if (lookahead == 's') ADVANCE(375); END_STATE(); case 375: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'e') + ADVANCE(376); END_STATE(); case 376: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 377: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(376); + SKIP(377); if (lookahead == '/') ADVANCE(238); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7041,12 +7110,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(230); END_STATE(); - case 377: + case 378: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(377); + SKIP(378); if (lookahead == '#') ADVANCE(237); if (lookahead == '/') @@ -7084,12 +7153,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 378: + case 379: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(378); + SKIP(379); if (lookahead == '#') ADVANCE(8); if (lookahead == '/') @@ -7125,14 +7194,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(217); END_STATE(); - case 379: + case 380: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(379); + SKIP(380); if (lookahead == '#') - ADVANCE(380); + ADVANCE(381); if (lookahead == '/') ADVANCE(238); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7166,7 +7235,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(217); END_STATE(); - case 380: + case 381: if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'c') || ('f' <= lookahead && lookahead <= 'h') || @@ -7175,11 +7244,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(10); if (lookahead == 'e') - ADVANCE(381); + ADVANCE(382); if (lookahead == 'i') ADVANCE(24); END_STATE(); - case 381: + case 382: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -7190,68 +7259,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(20); END_STATE(); - case 382: + case 383: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(382); + SKIP(383); if (lookahead == '#') - ADVANCE(383); + ADVANCE(384); if (lookahead == '/') ADVANCE(238); END_STATE(); - case 383: - if (lookahead == 'e') - ADVANCE(384); - END_STATE(); case 384: - if (lookahead == 'n') + if (lookahead == 'e') ADVANCE(385); END_STATE(); case 385: - if (lookahead == 'd') + if (lookahead == 'n') ADVANCE(386); END_STATE(); case 386: - if (lookahead == 'i') + if (lookahead == 'd') ADVANCE(387); END_STATE(); case 387: - if (lookahead == 'f') + if (lookahead == 'i') ADVANCE(388); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_POUNDendif); + if (lookahead == 'f') + ADVANCE(389); END_STATE(); case 389: + ACCEPT_TOKEN(anon_sym_POUNDendif); + END_STATE(); + case 390: if ((lookahead == '\t') || (lookahead == ' ')) - ADVANCE(390); - if (lookahead == '\n') ADVANCE(391); + if (lookahead == '\n') + ADVANCE(392); if (lookahead == '\r') - SKIP(389); + SKIP(390); if (lookahead == '(') ADVANCE(49); if (lookahead == '/') ADVANCE(238); END_STATE(); - case 390: + case 391: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH); if ((lookahead == '\t') || (lookahead == ' ')) - ADVANCE(390); + ADVANCE(391); END_STATE(); - case 391: + case 392: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 392: + case 393: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(392); + SKIP(393); if (lookahead == ')') ADVANCE(50); if (lookahead == '.') @@ -7263,13 +7332,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); END_STATE(); - case 393: + case 394: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(394); + ADVANCE(395); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(392); if (lookahead == '/') ADVANCE(255); if (lookahead == '\\') @@ -7283,12 +7352,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 394: + case 395: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(394); + ADVANCE(395); if (lookahead == '/') ADVANCE(255); if (lookahead == '\\') @@ -7302,22 +7371,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 395: + case 396: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(395); + SKIP(396); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(392); if (lookahead == '/') ADVANCE(238); END_STATE(); - case 396: + case 397: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(396); + SKIP(397); if (lookahead == '.') ADVANCE(292); if (lookahead == '/') @@ -7327,12 +7396,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); END_STATE(); - case 397: + case 398: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(397); + SKIP(398); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -7396,12 +7465,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 398: + case 399: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(398); + SKIP(399); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -7465,53 +7534,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 399: + case 400: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(400); + ADVANCE(401); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(392); if (lookahead == '!') - ADVANCE(401); - if (lookahead == '\"') ADVANCE(402); + if (lookahead == '\"') + ADVANCE(403); if (lookahead == '%') - ADVANCE(405); - if (lookahead == '&') ADVANCE(406); - if (lookahead == '\'') + if (lookahead == '&') ADVANCE(407); + if (lookahead == '\'') + ADVANCE(408); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(412); - if (lookahead == '+') ADVANCE(413); + if (lookahead == '+') + ADVANCE(414); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(414); + ADVANCE(415); if (lookahead == '.') ADVANCE(303); if (lookahead == '/') - ADVANCE(415); - if (lookahead == '0') ADVANCE(416); + if (lookahead == '0') + ADVANCE(417); if ('1' <= lookahead && lookahead <= '9') - ADVANCE(419); + ADVANCE(420); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(424); + ADVANCE(425); if (lookahead == '=') - ADVANCE(426); - if (lookahead == '>') ADVANCE(427); + if (lookahead == '>') + ADVANCE(428); if (lookahead == '?') ADVANCE(91); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7521,7 +7590,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'k') || ('m' <= lookahead && lookahead <= 'q') || ('x' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == '[') ADVANCE(93); if (lookahead == '\\') @@ -7529,41 +7598,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(430); - if (lookahead == 'a') ADVANCE(431); + if (lookahead == 'a') + ADVANCE(432); if (lookahead == 'b') - ADVANCE(435); + ADVANCE(436); if (lookahead == 'c') - ADVANCE(440); + ADVANCE(441); if (lookahead == 'd') - ADVANCE(453); + ADVANCE(454); if (lookahead == 'e') - ADVANCE(461); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(473); + ADVANCE(474); if (lookahead == 'g') - ADVANCE(476); + ADVANCE(477); if (lookahead == 'i') - ADVANCE(480); + ADVANCE(481); if (lookahead == 'l') - ADVANCE(487); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(491); + ADVANCE(492); if (lookahead == 's') - ADVANCE(509); + ADVANCE(510); if (lookahead == 't') - ADVANCE(533); + ADVANCE(534); if (lookahead == 'u') - ADVANCE(540); + ADVANCE(541); if (lookahead == 'v') - ADVANCE(551); + ADVANCE(552); if (lookahead == 'w') - ADVANCE(559); + ADVANCE(560); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(564); + ADVANCE(565); if (lookahead == '}') ADVANCE(234); if (lookahead == '~') @@ -7578,52 +7647,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= '~'))) ADVANCE(261); END_STATE(); - case 400: + case 401: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(400); - if (lookahead == '!') ADVANCE(401); - if (lookahead == '\"') + if (lookahead == '!') ADVANCE(402); + if (lookahead == '\"') + ADVANCE(403); if (lookahead == '%') - ADVANCE(405); - if (lookahead == '&') ADVANCE(406); - if (lookahead == '\'') + if (lookahead == '&') ADVANCE(407); + if (lookahead == '\'') + ADVANCE(408); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(412); - if (lookahead == '+') ADVANCE(413); + if (lookahead == '+') + ADVANCE(414); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(414); + ADVANCE(415); if (lookahead == '.') ADVANCE(303); if (lookahead == '/') - ADVANCE(415); - if (lookahead == '0') ADVANCE(416); + if (lookahead == '0') + ADVANCE(417); if ('1' <= lookahead && lookahead <= '9') - ADVANCE(419); + ADVANCE(420); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(424); + ADVANCE(425); if (lookahead == '=') - ADVANCE(426); - if (lookahead == '>') ADVANCE(427); + if (lookahead == '>') + ADVANCE(428); if (lookahead == '?') ADVANCE(91); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7633,7 +7702,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'k') || ('m' <= lookahead && lookahead <= 'q') || ('x' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == '[') ADVANCE(93); if (lookahead == '\\') @@ -7641,41 +7710,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(430); - if (lookahead == 'a') ADVANCE(431); + if (lookahead == 'a') + ADVANCE(432); if (lookahead == 'b') - ADVANCE(435); + ADVANCE(436); if (lookahead == 'c') - ADVANCE(440); + ADVANCE(441); if (lookahead == 'd') - ADVANCE(453); + ADVANCE(454); if (lookahead == 'e') - ADVANCE(461); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(473); + ADVANCE(474); if (lookahead == 'g') - ADVANCE(476); + ADVANCE(477); if (lookahead == 'i') - ADVANCE(480); + ADVANCE(481); if (lookahead == 'l') - ADVANCE(487); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(491); + ADVANCE(492); if (lookahead == 's') - ADVANCE(509); + ADVANCE(510); if (lookahead == 't') - ADVANCE(533); + ADVANCE(534); if (lookahead == 'u') - ADVANCE(540); + ADVANCE(541); if (lookahead == 'v') - ADVANCE(551); + ADVANCE(552); if (lookahead == 'w') - ADVANCE(559); + ADVANCE(560); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(564); + ADVANCE(565); if (lookahead == '}') ADVANCE(234); if (lookahead == '~') @@ -7690,94 +7759,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= '~'))) ADVANCE(261); END_STATE(); - case 401: + case 402: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '=') ADVANCE(3); END_STATE(); - case 402: + case 403: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(4); if (lookahead == '\"') ADVANCE(5); if (lookahead == '\\') - ADVANCE(403); + ADVANCE(404); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\"') || (lookahead == '\\'))) - ADVANCE(402); + ADVANCE(403); END_STATE(); - case 403: + case 404: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(402); + ADVANCE(403); if (lookahead == '\"') - ADVANCE(404); + ADVANCE(405); if (lookahead == '\\') - ADVANCE(403); + ADVANCE(404); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\"') || (lookahead == '\\'))) - ADVANCE(402); + ADVANCE(403); END_STATE(); - case 404: + case 405: ACCEPT_TOKEN(sym_string_literal); if (lookahead == '\n') ADVANCE(4); if (lookahead == '\"') ADVANCE(5); if (lookahead == '\\') - ADVANCE(403); + ADVANCE(404); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\"') || (lookahead == '\\'))) - ADVANCE(402); + ADVANCE(403); END_STATE(); - case 405: + case 406: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(40); END_STATE(); - case 406: + case 407: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(42); if (lookahead == '=') ADVANCE(43); END_STATE(); - case 407: + case 408: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(48); if (lookahead == '\'') ADVANCE(261); if (lookahead == '\\') - ADVANCE(408); + ADVANCE(409); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\'') || (lookahead == '\\'))) - ADVANCE(409); + ADVANCE(410); END_STATE(); - case 408: + case 409: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(409); - if (lookahead == '\'') ADVANCE(410); - if (lookahead == '\\') + if (lookahead == '\'') ADVANCE(411); + if (lookahead == '\\') + ADVANCE(412); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\'') || (lookahead == '\\'))) - ADVANCE(409); + ADVANCE(410); END_STATE(); - case 409: + case 410: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\'') ADVANCE(47); @@ -7789,12 +7858,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 410: + case 411: ACCEPT_TOKEN(sym_char_literal); if (lookahead == '\'') ADVANCE(47); END_STATE(); - case 411: + case 412: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(261); @@ -7808,19 +7877,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 412: + case 413: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '=') ADVANCE(52); END_STATE(); - case 413: + case 414: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(54); if (lookahead == '=') ADVANCE(55); END_STATE(); - case 414: + case 415: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(58); @@ -7829,7 +7898,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(60); END_STATE(); - case 415: + case 416: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(256); @@ -7838,23 +7907,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(69); END_STATE(); - case 416: + case 417: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(417); + ADVANCE(418); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(419); - if (lookahead == 'b') ADVANCE(420); + if (lookahead == 'b') + ADVANCE(421); if (lookahead == 'u') ADVANCE(74); if (lookahead == 'x') - ADVANCE(422); + ADVANCE(423); END_STATE(); - case 417: + case 418: ACCEPT_TOKEN(sym_preproc_arg); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(418); + ADVANCE(419); if (lookahead == '\\') ADVANCE(260); if (!((lookahead == 0) || @@ -7863,25 +7932,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 418: + case 419: ACCEPT_TOKEN(sym_number_literal); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(418); + ADVANCE(419); END_STATE(); - case 419: + case 420: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(417); + ADVANCE(418); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(419); + ADVANCE(420); if (lookahead == 'u') ADVANCE(74); END_STATE(); - case 420: + case 421: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '0') || (lookahead == '1')) - ADVANCE(421); + ADVANCE(422); if (lookahead == '\\') ADVANCE(260); if (!((lookahead == 0) || @@ -7891,308 +7960,308 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 421: + case 422: ACCEPT_TOKEN(sym_number_literal); if ((lookahead == '0') || (lookahead == '1')) - ADVANCE(421); + ADVANCE(422); END_STATE(); - case 422: + case 423: ACCEPT_TOKEN(sym_preproc_arg); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || (']' <= lookahead && lookahead <= 'f')) - ADVANCE(423); + ADVANCE(424); if (lookahead == '\\') - ADVANCE(423); + ADVANCE(424); if (!((lookahead == 0) || (lookahead == '\n') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'f'))) ADVANCE(261); END_STATE(); - case 423: + case 424: ACCEPT_TOKEN(sym_number_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || (']' <= lookahead && lookahead <= 'f')) - ADVANCE(423); + ADVANCE(424); if (lookahead == '\\') - ADVANCE(423); + ADVANCE(424); END_STATE(); - case 424: + case 425: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') - ADVANCE(425); + ADVANCE(426); if (lookahead == '=') ADVANCE(84); END_STATE(); - case 425: + case 426: ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') ADVANCE(83); END_STATE(); - case 426: + case 427: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(86); END_STATE(); - case 427: + case 428: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(88); if (lookahead == '>') - ADVANCE(428); + ADVANCE(429); END_STATE(); - case 428: + case 429: ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead == '=') ADVANCE(90); END_STATE(); - case 429: + case 430: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 430: + case 431: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '=') ADVANCE(96); END_STATE(); - case 431: + case 432: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'u') - ADVANCE(432); + ADVANCE(433); END_STATE(); - case 432: + case 433: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(433); + ADVANCE(434); END_STATE(); - case 433: + case 434: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'o') - ADVANCE(434); + ADVANCE(435); END_STATE(); - case 434: + case 435: ACCEPT_TOKEN(anon_sym_auto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 435: + case 436: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'r') - ADVANCE(436); + ADVANCE(437); END_STATE(); - case 436: + case 437: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(437); + ADVANCE(438); END_STATE(); - case 437: + case 438: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'a') - ADVANCE(438); + ADVANCE(439); END_STATE(); - case 438: + case 439: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'j') || ('l' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'k') - ADVANCE(439); + ADVANCE(440); END_STATE(); - case 439: + case 440: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 440: + case 441: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'a') - ADVANCE(441); + ADVANCE(442); if (lookahead == 'o') - ADVANCE(444); + ADVANCE(445); END_STATE(); - case 441: + case 442: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 's') - ADVANCE(442); + ADVANCE(443); END_STATE(); - case 442: + case 443: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(443); + ADVANCE(444); END_STATE(); - case 443: + case 444: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 444: + case 445: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'n') - ADVANCE(445); + ADVANCE(446); END_STATE(); - case 445: + case 446: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 's') - ADVANCE(446); + ADVANCE(447); if (lookahead == 't') - ADVANCE(448); + ADVANCE(449); END_STATE(); - case 446: + case 447: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(447); + ADVANCE(448); END_STATE(); - case 447: + case 448: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 448: + case 449: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(449); + ADVANCE(450); END_STATE(); - case 449: + case 450: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'n') - ADVANCE(450); + ADVANCE(451); END_STATE(); - case 450: + case 451: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'u') - ADVANCE(451); + ADVANCE(452); END_STATE(); - case 451: + case 452: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(452); + ADVANCE(453); END_STATE(); - case 452: + case 453: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 453: + case 454: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8200,83 +8269,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(454); + ADVANCE(455); if (lookahead == 'o') - ADVANCE(460); + ADVANCE(461); END_STATE(); - case 454: + case 455: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'f') - ADVANCE(455); + ADVANCE(456); END_STATE(); - case 455: + case 456: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'a') - ADVANCE(456); + ADVANCE(457); END_STATE(); - case 456: + case 457: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'u') - ADVANCE(457); + ADVANCE(458); END_STATE(); - case 457: + case 458: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'l') - ADVANCE(458); + ADVANCE(459); END_STATE(); - case 458: + case 459: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(459); + ADVANCE(460); END_STATE(); - case 459: + case 460: ACCEPT_TOKEN(anon_sym_default); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 460: + case 461: ACCEPT_TOKEN(anon_sym_do); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 461: + case 462: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8286,198 +8355,198 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'w') || (lookahead == 'y') || (lookahead == 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'l') - ADVANCE(462); + ADVANCE(463); if (lookahead == 'n') - ADVANCE(465); + ADVANCE(466); if (lookahead == 'x') - ADVANCE(468); + ADVANCE(469); END_STATE(); - case 462: + case 463: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 's') - ADVANCE(463); + ADVANCE(464); END_STATE(); - case 463: + case 464: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(464); + ADVANCE(465); END_STATE(); - case 464: + case 465: ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 465: + case 466: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'u') - ADVANCE(466); + ADVANCE(467); END_STATE(); - case 466: + case 467: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'l') || ('n' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'm') - ADVANCE(467); + ADVANCE(468); END_STATE(); - case 467: + case 468: ACCEPT_TOKEN(anon_sym_enum); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 468: + case 469: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(469); + ADVANCE(470); END_STATE(); - case 469: + case 470: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(470); + ADVANCE(471); END_STATE(); - case 470: + case 471: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'r') - ADVANCE(471); + ADVANCE(472); END_STATE(); - case 471: + case 472: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'n') - ADVANCE(472); + ADVANCE(473); END_STATE(); - case 472: + case 473: ACCEPT_TOKEN(anon_sym_extern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 473: + case 474: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'o') - ADVANCE(474); + ADVANCE(475); END_STATE(); - case 474: + case 475: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'r') - ADVANCE(475); + ADVANCE(476); END_STATE(); - case 475: + case 476: ACCEPT_TOKEN(anon_sym_for); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 476: + case 477: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'o') - ADVANCE(477); + ADVANCE(478); END_STATE(); - case 477: + case 478: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(478); + ADVANCE(479); END_STATE(); - case 478: + case 479: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'o') - ADVANCE(479); + ADVANCE(480); END_STATE(); - case 479: + case 480: ACCEPT_TOKEN(anon_sym_goto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 480: + case 481: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8485,125 +8554,125 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'f') - ADVANCE(481); - if (lookahead == 'n') ADVANCE(482); + if (lookahead == 'n') + ADVANCE(483); END_STATE(); - case 481: + case 482: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 482: + case 483: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'l') - ADVANCE(483); + ADVANCE(484); END_STATE(); - case 483: + case 484: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(484); + ADVANCE(485); END_STATE(); - case 484: + case 485: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'n') - ADVANCE(485); + ADVANCE(486); END_STATE(); - case 485: + case 486: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(486); + ADVANCE(487); END_STATE(); - case 486: + case 487: ACCEPT_TOKEN(sym_function_specifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 487: + case 488: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'o') - ADVANCE(488); + ADVANCE(489); END_STATE(); - case 488: + case 489: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'n') - ADVANCE(489); + ADVANCE(490); END_STATE(); - case 489: + case 490: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'g') - ADVANCE(490); + ADVANCE(491); END_STATE(); - case 490: + case 491: ACCEPT_TOKEN(anon_sym_long); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 491: + case 492: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(492); + ADVANCE(493); END_STATE(); - case 492: + case 493: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8611,111 +8680,111 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'r') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'g') - ADVANCE(493); + ADVANCE(494); if (lookahead == 's') - ADVANCE(499); + ADVANCE(500); if (lookahead == 't') - ADVANCE(505); + ADVANCE(506); END_STATE(); - case 493: + case 494: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(494); + ADVANCE(495); END_STATE(); - case 494: + case 495: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 's') - ADVANCE(495); + ADVANCE(496); END_STATE(); - case 495: + case 496: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(496); + ADVANCE(497); END_STATE(); - case 496: + case 497: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(497); + ADVANCE(498); END_STATE(); - case 497: + case 498: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'r') - ADVANCE(498); + ADVANCE(499); END_STATE(); - case 498: + case 499: ACCEPT_TOKEN(anon_sym_register); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 499: + case 500: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(500); + ADVANCE(501); END_STATE(); - case 500: + case 501: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'r') - ADVANCE(501); + ADVANCE(502); END_STATE(); - case 501: + case 502: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(502); + ADVANCE(503); END_STATE(); - case 502: + case 503: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8723,71 +8792,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'c') - ADVANCE(503); + ADVANCE(504); END_STATE(); - case 503: + case 504: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(504); + ADVANCE(505); END_STATE(); - case 504: + case 505: ACCEPT_TOKEN(anon_sym_restrict); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 505: + case 506: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'u') - ADVANCE(506); + ADVANCE(507); END_STATE(); - case 506: + case 507: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'r') - ADVANCE(507); + ADVANCE(508); END_STATE(); - case 507: + case 508: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'n') - ADVANCE(508); + ADVANCE(509); END_STATE(); - case 508: + case 509: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 509: + case 510: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8797,144 +8866,144 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'u') || (lookahead == 'v') || ('x' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'h') - ADVANCE(510); + ADVANCE(511); if (lookahead == 'i') - ADVANCE(514); + ADVANCE(515); if (lookahead == 't') - ADVANCE(519); + ADVANCE(520); if (lookahead == 'w') - ADVANCE(528); + ADVANCE(529); END_STATE(); - case 510: + case 511: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'o') - ADVANCE(511); + ADVANCE(512); END_STATE(); - case 511: + case 512: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'r') - ADVANCE(512); + ADVANCE(513); END_STATE(); - case 512: + case 513: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(513); + ADVANCE(514); END_STATE(); - case 513: + case 514: ACCEPT_TOKEN(anon_sym_short); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 514: + case 515: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'y')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'z') - ADVANCE(515); + ADVANCE(516); END_STATE(); - case 515: + case 516: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(516); + ADVANCE(517); END_STATE(); - case 516: + case 517: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'o') - ADVANCE(517); + ADVANCE(518); END_STATE(); - case 517: + case 518: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'f') - ADVANCE(518); + ADVANCE(519); END_STATE(); - case 518: + case 519: ACCEPT_TOKEN(anon_sym_sizeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 519: + case 520: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'a') - ADVANCE(520); + ADVANCE(521); if (lookahead == 'r') - ADVANCE(524); + ADVANCE(525); END_STATE(); - case 520: + case 521: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(521); + ADVANCE(522); END_STATE(); - case 521: + case 522: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(522); + ADVANCE(523); END_STATE(); - case 522: + case 523: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8942,30 +9011,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'c') - ADVANCE(523); + ADVANCE(524); END_STATE(); - case 523: + case 524: ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 524: + case 525: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'u') - ADVANCE(525); + ADVANCE(526); END_STATE(); - case 525: + case 526: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8973,52 +9042,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'c') - ADVANCE(526); + ADVANCE(527); END_STATE(); - case 526: + case 527: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(527); + ADVANCE(528); END_STATE(); - case 527: + case 528: ACCEPT_TOKEN(anon_sym_struct); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 528: + case 529: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(529); + ADVANCE(530); END_STATE(); - case 529: + case 530: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(530); + ADVANCE(531); END_STATE(); - case 530: + case 531: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9026,115 +9095,115 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'c') - ADVANCE(531); + ADVANCE(532); END_STATE(); - case 531: + case 532: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'h') - ADVANCE(532); + ADVANCE(533); END_STATE(); - case 532: + case 533: ACCEPT_TOKEN(anon_sym_switch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 533: + case 534: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'x') || (lookahead == 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'y') - ADVANCE(534); + ADVANCE(535); END_STATE(); - case 534: + case 535: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'o') || ('q' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'p') - ADVANCE(535); + ADVANCE(536); END_STATE(); - case 535: + case 536: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(536); + ADVANCE(537); END_STATE(); - case 536: + case 537: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'd') - ADVANCE(537); + ADVANCE(538); END_STATE(); - case 537: + case 538: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(538); + ADVANCE(539); END_STATE(); - case 538: + case 539: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'f') - ADVANCE(539); + ADVANCE(540); END_STATE(); - case 539: + case 540: ACCEPT_TOKEN(anon_sym_typedef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 540: + case 541: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'n') - ADVANCE(541); + ADVANCE(542); END_STATE(); - case 541: + case 542: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9142,256 +9211,256 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(542); + ADVANCE(543); if (lookahead == 's') - ADVANCE(545); + ADVANCE(546); END_STATE(); - case 542: + case 543: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'o') - ADVANCE(543); + ADVANCE(544); END_STATE(); - case 543: + case 544: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'n') - ADVANCE(544); + ADVANCE(545); END_STATE(); - case 544: + case 545: ACCEPT_TOKEN(anon_sym_union); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 545: + case 546: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(546); + ADVANCE(547); END_STATE(); - case 546: + case 547: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'g') - ADVANCE(547); + ADVANCE(548); END_STATE(); - case 547: + case 548: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'n') - ADVANCE(548); + ADVANCE(549); END_STATE(); - case 548: + case 549: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(549); + ADVANCE(550); END_STATE(); - case 549: + case 550: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'd') - ADVANCE(550); + ADVANCE(551); END_STATE(); - case 550: + case 551: ACCEPT_TOKEN(anon_sym_unsigned); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 551: + case 552: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'o') - ADVANCE(552); + ADVANCE(553); END_STATE(); - case 552: + case 553: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'l') - ADVANCE(553); + ADVANCE(554); END_STATE(); - case 553: + case 554: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'a') - ADVANCE(554); + ADVANCE(555); END_STATE(); - case 554: + case 555: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 't') - ADVANCE(555); + ADVANCE(556); END_STATE(); - case 555: + case 556: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(556); + ADVANCE(557); END_STATE(); - case 556: + case 557: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'l') - ADVANCE(557); + ADVANCE(558); END_STATE(); - case 557: + case 558: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(558); + ADVANCE(559); END_STATE(); - case 558: + case 559: ACCEPT_TOKEN(anon_sym_volatile); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 559: + case 560: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'h') - ADVANCE(560); + ADVANCE(561); END_STATE(); - case 560: + case 561: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'i') - ADVANCE(561); + ADVANCE(562); END_STATE(); - case 561: + case 562: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'l') - ADVANCE(562); + ADVANCE(563); END_STATE(); - case 562: + case 563: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); if (lookahead == 'e') - ADVANCE(563); + ADVANCE(564); END_STATE(); - case 563: + case 564: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(429); + ADVANCE(430); END_STATE(); - case 564: + case 565: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '=') ADVANCE(232); if (lookahead == '|') ADVANCE(233); END_STATE(); - case 565: + case 566: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(565); + SKIP(566); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -9465,12 +9534,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 566: + case 567: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(566); + SKIP(567); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -9546,14 +9615,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 567: + case 568: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(567); + SKIP(568); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -9651,12 +9720,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 568: + case 569: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(568); + SKIP(569); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -9695,12 +9764,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 569: + case 570: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(569); + SKIP(570); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -9748,12 +9817,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 570: + case 571: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(570); + SKIP(571); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -9816,16 +9885,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 571: + case 572: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(571); + SKIP(572); if (lookahead == '!') ADVANCE(306); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '#') ADVANCE(8); if (lookahead == '%') @@ -9903,14 +9974,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 572: + case 573: if ((lookahead == '\t') || (lookahead == ' ')) - ADVANCE(573); + ADVANCE(574); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(392); if (lookahead == '\r') - SKIP(572); + SKIP(573); if (lookahead == '!') ADVANCE(306); if (lookahead == '#') @@ -9990,18 +10061,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 573: + case 574: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH); if ((lookahead == '\t') || (lookahead == ' ')) - ADVANCE(573); + ADVANCE(574); END_STATE(); - case 574: + case 575: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(574); + SKIP(575); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10062,7 +10133,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(101); if (lookahead == 'c') - ADVANCE(350); + ADVANCE(351); if (lookahead == 'd') ADVANCE(119); if (lookahead == 'f') @@ -10070,11 +10141,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(142); if (lookahead == 'i') - ADVANCE(353); - if (lookahead == 'r') ADVANCE(354); + if (lookahead == 'r') + ADVANCE(355); if (lookahead == 's') - ADVANCE(356); + ADVANCE(357); if (lookahead == 'w') ADVANCE(225); if (lookahead == '{') @@ -10086,12 +10157,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 575: + case 576: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(575); + SKIP(576); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -10137,12 +10208,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 576: + case 577: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(576); + SKIP(577); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -10162,12 +10233,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 577: + case 578: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(577); + SKIP(578); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10232,12 +10303,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 578: + case 579: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(578); + SKIP(579); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10333,12 +10404,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 579: + case 580: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(579); + SKIP(580); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -10410,12 +10481,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 580: + case 581: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(580); + SKIP(581); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -10455,12 +10526,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 581: + case 582: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(581); + SKIP(582); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10519,12 +10590,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 582: + case 583: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(582); + SKIP(583); if (lookahead == '(') ADVANCE(49); if (lookahead == ',') @@ -10540,12 +10611,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 583: + case 584: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(583); + SKIP(584); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -10565,12 +10636,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 584: + case 585: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(584); + SKIP(585); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -10588,12 +10659,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(230); END_STATE(); - case 585: + case 586: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(585); + SKIP(586); if (lookahead == ')') ADVANCE(50); if (lookahead == '.') @@ -10625,12 +10696,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(217); END_STATE(); - case 586: + case 587: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(586); + SKIP(587); if (lookahead == '(') ADVANCE(49); if (lookahead == '*') @@ -10652,12 +10723,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 587: + case 588: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(587); + SKIP(588); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -10671,12 +10742,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 588: + case 589: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(588); + SKIP(589); if (lookahead == ',') ADVANCE(56); if (lookahead == '/') @@ -10686,12 +10757,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 589: + case 590: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(589); + SKIP(590); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -10743,12 +10814,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 590: + case 591: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(590); + SKIP(591); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -10785,12 +10856,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 591: + case 592: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(591); + SKIP(592); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -10864,12 +10935,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 592: + case 593: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(592); + SKIP(593); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -10941,12 +11012,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 593: + case 594: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(593); + SKIP(594); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -10986,12 +11057,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 594: + case 595: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(594); + SKIP(595); if (lookahead == '(') ADVANCE(49); if (lookahead == ',') @@ -11009,12 +11080,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(230); END_STATE(); - case 595: + case 596: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(595); + SKIP(596); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -11073,12 +11144,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 596: + case 597: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(596); + SKIP(597); if (lookahead == '!') ADVANCE(265); if (lookahead == '\"') @@ -11150,12 +11221,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 597: + case 598: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(597); + SKIP(598); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11205,12 +11276,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 598: + case 599: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(598); + SKIP(599); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11258,12 +11329,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 599: + case 600: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(599); + SKIP(600); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11305,12 +11376,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 600: + case 601: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(600); + SKIP(601); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -11371,12 +11442,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 601: + case 602: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(601); + SKIP(602); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11420,45 +11491,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 602: + case 603: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(603); + ADVANCE(604); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(392); if (lookahead == '!') - ADVANCE(604); + ADVANCE(605); if (lookahead == '%') - ADVANCE(405); - if (lookahead == '&') ADVANCE(406); + if (lookahead == '&') + ADVANCE(407); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(412); - if (lookahead == '+') ADVANCE(413); + if (lookahead == '+') + ADVANCE(414); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(414); + ADVANCE(415); if (lookahead == '.') ADVANCE(303); if (lookahead == '/') - ADVANCE(415); + ADVANCE(416); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(424); + ADVANCE(425); if (lookahead == '=') - ADVANCE(426); - if (lookahead == '>') ADVANCE(427); + if (lookahead == '>') + ADVANCE(428); if (lookahead == '?') ADVANCE(91); if (lookahead == '[') @@ -11468,11 +11539,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(430); + ADVANCE(431); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(564); + ADVANCE(565); if (lookahead == '}') ADVANCE(234); if (!((lookahead == 0) || @@ -11489,44 +11560,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('{' <= lookahead && lookahead <= '}'))) ADVANCE(261); END_STATE(); - case 603: + case 604: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(603); - if (lookahead == '!') ADVANCE(604); + if (lookahead == '!') + ADVANCE(605); if (lookahead == '%') - ADVANCE(405); - if (lookahead == '&') ADVANCE(406); + if (lookahead == '&') + ADVANCE(407); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(412); - if (lookahead == '+') ADVANCE(413); + if (lookahead == '+') + ADVANCE(414); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(414); + ADVANCE(415); if (lookahead == '.') ADVANCE(303); if (lookahead == '/') - ADVANCE(415); + ADVANCE(416); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(424); + ADVANCE(425); if (lookahead == '=') - ADVANCE(426); - if (lookahead == '>') ADVANCE(427); + if (lookahead == '>') + ADVANCE(428); if (lookahead == '?') ADVANCE(91); if (lookahead == '[') @@ -11536,11 +11607,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(430); + ADVANCE(431); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(564); + ADVANCE(565); if (lookahead == '}') ADVANCE(234); if (!((lookahead == 0) || @@ -11557,7 +11628,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('{' <= lookahead && lookahead <= '}'))) ADVANCE(261); END_STATE(); - case 604: + case 605: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '=') ADVANCE(3); @@ -11569,12 +11640,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 605: + case 606: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(605); + SKIP(606); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11618,12 +11689,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 606: + case 607: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(606); + SKIP(607); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -11699,11 +11770,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [51] = {.lex_state = 304}, [52] = {.lex_state = 304}, [53] = {.lex_state = 305}, - [54] = {.lex_state = 305}, - [55] = {.lex_state = 307}, - [56] = {.lex_state = 289}, - [57] = {.lex_state = 308}, - [58] = {.lex_state = 304}, + [54] = {.lex_state = 307}, + [55] = {.lex_state = 305}, + [56] = {.lex_state = 308}, + [57] = {.lex_state = 289}, + [58] = {.lex_state = 309}, [59] = {.lex_state = 304}, [60] = {.lex_state = 304}, [61] = {.lex_state = 304}, @@ -11716,28 +11787,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [68] = {.lex_state = 304}, [69] = {.lex_state = 304}, [70] = {.lex_state = 304}, - [71] = {.lex_state = 305}, - [72] = {.lex_state = 252}, - [73] = {.lex_state = 305}, + [71] = {.lex_state = 304}, + [72] = {.lex_state = 305}, + [73] = {.lex_state = 252}, [74] = {.lex_state = 305}, - [75] = {.lex_state = 307}, - [76] = {.lex_state = 307}, - [77] = {.lex_state = 307}, - [78] = {.lex_state = 307}, - [79] = {.lex_state = 307}, - [80] = {.lex_state = 307}, - [81] = {.lex_state = 307}, - [82] = {.lex_state = 307}, - [83] = {.lex_state = 307}, - [84] = {.lex_state = 307}, - [85] = {.lex_state = 300}, - [86] = {.lex_state = 304}, + [75] = {.lex_state = 305}, + [76] = {.lex_state = 308}, + [77] = {.lex_state = 308}, + [78] = {.lex_state = 308}, + [79] = {.lex_state = 308}, + [80] = {.lex_state = 308}, + [81] = {.lex_state = 308}, + [82] = {.lex_state = 308}, + [83] = {.lex_state = 308}, + [84] = {.lex_state = 308}, + [85] = {.lex_state = 308}, + [86] = {.lex_state = 300}, [87] = {.lex_state = 304}, [88] = {.lex_state = 304}, [89] = {.lex_state = 304}, [90] = {.lex_state = 304}, - [91] = {.lex_state = 309}, - [92] = {.lex_state = 304}, + [91] = {.lex_state = 304}, + [92] = {.lex_state = 310}, [93] = {.lex_state = 304}, [94] = {.lex_state = 304}, [95] = {.lex_state = 304}, @@ -11750,30 +11821,30 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [102] = {.lex_state = 304}, [103] = {.lex_state = 304}, [104] = {.lex_state = 304}, - [105] = {.lex_state = 309}, - [106] = {.lex_state = 309}, - [107] = {.lex_state = 309}, - [108] = {.lex_state = 309}, - [109] = {.lex_state = 309}, - [110] = {.lex_state = 309}, - [111] = {.lex_state = 309}, - [112] = {.lex_state = 309}, - [113] = {.lex_state = 309}, - [114] = {.lex_state = 309}, - [115] = {.lex_state = 309}, - [116] = {.lex_state = 304}, - [117] = {.lex_state = 309}, - [118] = {.lex_state = 307}, - [119] = {.lex_state = 300}, - [120] = {.lex_state = 304}, + [105] = {.lex_state = 304}, + [106] = {.lex_state = 310}, + [107] = {.lex_state = 310}, + [108] = {.lex_state = 310}, + [109] = {.lex_state = 310}, + [110] = {.lex_state = 310}, + [111] = {.lex_state = 310}, + [112] = {.lex_state = 310}, + [113] = {.lex_state = 310}, + [114] = {.lex_state = 310}, + [115] = {.lex_state = 310}, + [116] = {.lex_state = 310}, + [117] = {.lex_state = 304}, + [118] = {.lex_state = 310}, + [119] = {.lex_state = 308}, + [120] = {.lex_state = 300}, [121] = {.lex_state = 304}, [122] = {.lex_state = 304}, [123] = {.lex_state = 304}, [124] = {.lex_state = 304}, - [125] = {.lex_state = 310}, - [126] = {.lex_state = 304}, - [127] = {.lex_state = 305}, - [128] = {.lex_state = 304}, + [125] = {.lex_state = 304}, + [126] = {.lex_state = 311}, + [127] = {.lex_state = 304}, + [128] = {.lex_state = 305}, [129] = {.lex_state = 304}, [130] = {.lex_state = 304}, [131] = {.lex_state = 304}, @@ -11784,30 +11855,30 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [136] = {.lex_state = 304}, [137] = {.lex_state = 304}, [138] = {.lex_state = 304}, - [139] = {.lex_state = 310}, - [140] = {.lex_state = 310}, - [141] = {.lex_state = 310}, - [142] = {.lex_state = 310}, - [143] = {.lex_state = 310}, - [144] = {.lex_state = 310}, - [145] = {.lex_state = 310}, - [146] = {.lex_state = 310}, - [147] = {.lex_state = 310}, - [148] = {.lex_state = 310}, - [149] = {.lex_state = 309}, - [150] = {.lex_state = 304}, - [151] = {.lex_state = 310}, - [152] = {.lex_state = 300}, - [153] = {.lex_state = 305}, - [154] = {.lex_state = 304}, + [139] = {.lex_state = 304}, + [140] = {.lex_state = 311}, + [141] = {.lex_state = 311}, + [142] = {.lex_state = 311}, + [143] = {.lex_state = 311}, + [144] = {.lex_state = 311}, + [145] = {.lex_state = 311}, + [146] = {.lex_state = 311}, + [147] = {.lex_state = 311}, + [148] = {.lex_state = 311}, + [149] = {.lex_state = 311}, + [150] = {.lex_state = 310}, + [151] = {.lex_state = 304}, + [152] = {.lex_state = 311}, + [153] = {.lex_state = 300}, + [154] = {.lex_state = 305}, [155] = {.lex_state = 304}, [156] = {.lex_state = 304}, [157] = {.lex_state = 304}, [158] = {.lex_state = 304}, - [159] = {.lex_state = 311}, - [160] = {.lex_state = 304}, - [161] = {.lex_state = 305}, - [162] = {.lex_state = 304}, + [159] = {.lex_state = 304}, + [160] = {.lex_state = 312}, + [161] = {.lex_state = 304}, + [162] = {.lex_state = 305}, [163] = {.lex_state = 304}, [164] = {.lex_state = 304}, [165] = {.lex_state = 304}, @@ -11819,136 +11890,136 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [171] = {.lex_state = 304}, [172] = {.lex_state = 304}, [173] = {.lex_state = 304}, - [174] = {.lex_state = 312}, - [175] = {.lex_state = 304}, - [176] = {.lex_state = 305}, - [177] = {.lex_state = 311}, - [178] = {.lex_state = 311}, - [179] = {.lex_state = 311}, - [180] = {.lex_state = 311}, - [181] = {.lex_state = 311}, - [182] = {.lex_state = 311}, - [183] = {.lex_state = 311}, - [184] = {.lex_state = 311}, - [185] = {.lex_state = 311}, - [186] = {.lex_state = 311}, - [187] = {.lex_state = 311}, - [188] = {.lex_state = 309}, - [189] = {.lex_state = 304}, - [190] = {.lex_state = 311}, - [191] = {.lex_state = 311}, - [192] = {.lex_state = 300}, - [193] = {.lex_state = 311}, - [194] = {.lex_state = 311}, - [195] = {.lex_state = 313}, - [196] = {.lex_state = 314}, - [197] = {.lex_state = 311}, - [198] = {.lex_state = 315}, - [199] = {.lex_state = 315}, - [200] = {.lex_state = 316}, - [201] = {.lex_state = 317}, - [202] = {.lex_state = 313}, - [203] = {.lex_state = 314}, - [204] = {.lex_state = 318}, - [205] = {.lex_state = 314}, - [206] = {.lex_state = 293}, - [207] = {.lex_state = 319}, - [208] = {.lex_state = 320}, - [209] = {.lex_state = 291}, + [174] = {.lex_state = 304}, + [175] = {.lex_state = 313}, + [176] = {.lex_state = 304}, + [177] = {.lex_state = 305}, + [178] = {.lex_state = 312}, + [179] = {.lex_state = 312}, + [180] = {.lex_state = 312}, + [181] = {.lex_state = 312}, + [182] = {.lex_state = 312}, + [183] = {.lex_state = 312}, + [184] = {.lex_state = 312}, + [185] = {.lex_state = 312}, + [186] = {.lex_state = 312}, + [187] = {.lex_state = 312}, + [188] = {.lex_state = 312}, + [189] = {.lex_state = 310}, + [190] = {.lex_state = 304}, + [191] = {.lex_state = 312}, + [192] = {.lex_state = 312}, + [193] = {.lex_state = 307}, + [194] = {.lex_state = 307}, + [195] = {.lex_state = 307}, + [196] = {.lex_state = 300}, + [197] = {.lex_state = 312}, + [198] = {.lex_state = 312}, + [199] = {.lex_state = 314}, + [200] = {.lex_state = 315}, + [201] = {.lex_state = 312}, + [202] = {.lex_state = 316}, + [203] = {.lex_state = 316}, + [204] = {.lex_state = 317}, + [205] = {.lex_state = 318}, + [206] = {.lex_state = 314}, + [207] = {.lex_state = 315}, + [208] = {.lex_state = 319}, + [209] = {.lex_state = 315}, [210] = {.lex_state = 293}, - [211] = {.lex_state = 321}, - [212] = {.lex_state = 320}, - [213] = {.lex_state = 310}, + [211] = {.lex_state = 320}, + [212] = {.lex_state = 321}, + [213] = {.lex_state = 291}, [214] = {.lex_state = 293}, - [215] = {.lex_state = 304}, - [216] = {.lex_state = 320}, - [217] = {.lex_state = 310}, - [218] = {.lex_state = 320}, - [219] = {.lex_state = 310}, - [220] = {.lex_state = 320}, - [221] = {.lex_state = 321}, - [222] = {.lex_state = 312}, - [223] = {.lex_state = 320}, - [224] = {.lex_state = 279}, + [215] = {.lex_state = 322}, + [216] = {.lex_state = 321}, + [217] = {.lex_state = 311}, + [218] = {.lex_state = 293}, + [219] = {.lex_state = 304}, + [220] = {.lex_state = 321}, + [221] = {.lex_state = 311}, + [222] = {.lex_state = 321}, + [223] = {.lex_state = 311}, + [224] = {.lex_state = 321}, [225] = {.lex_state = 322}, - [226] = {.lex_state = 315}, - [227] = {.lex_state = 323}, - [228] = {.lex_state = 312}, + [226] = {.lex_state = 313}, + [227] = {.lex_state = 321}, + [228] = {.lex_state = 279}, [229] = {.lex_state = 323}, - [230] = {.lex_state = 312}, - [231] = {.lex_state = 312}, - [232] = {.lex_state = 320}, + [230] = {.lex_state = 316}, + [231] = {.lex_state = 324}, + [232] = {.lex_state = 313}, [233] = {.lex_state = 324}, - [234] = {.lex_state = 322}, - [235] = {.lex_state = 320}, - [236] = {.lex_state = 320}, - [237] = {.lex_state = 321}, - [238] = {.lex_state = 286}, - [239] = {.lex_state = 310}, - [240] = {.lex_state = 293}, - [241] = {.lex_state = 304}, + [234] = {.lex_state = 313}, + [235] = {.lex_state = 313}, + [236] = {.lex_state = 321}, + [237] = {.lex_state = 325}, + [238] = {.lex_state = 323}, + [239] = {.lex_state = 321}, + [240] = {.lex_state = 321}, + [241] = {.lex_state = 322}, [242] = {.lex_state = 286}, - [243] = {.lex_state = 310}, - [244] = {.lex_state = 286}, - [245] = {.lex_state = 310}, + [243] = {.lex_state = 311}, + [244] = {.lex_state = 293}, + [245] = {.lex_state = 304}, [246] = {.lex_state = 286}, - [247] = {.lex_state = 321}, + [247] = {.lex_state = 311}, [248] = {.lex_state = 286}, - [249] = {.lex_state = 315}, + [249] = {.lex_state = 311}, [250] = {.lex_state = 286}, - [251] = {.lex_state = 321}, - [252] = {.lex_state = 320}, - [253] = {.lex_state = 310}, - [254] = {.lex_state = 293}, - [255] = {.lex_state = 304}, + [251] = {.lex_state = 322}, + [252] = {.lex_state = 286}, + [253] = {.lex_state = 316}, + [254] = {.lex_state = 286}, + [255] = {.lex_state = 322}, [256] = {.lex_state = 321}, - [257] = {.lex_state = 286}, - [258] = {.lex_state = 320}, - [259] = {.lex_state = 325}, - [260] = {.lex_state = 319}, - [261] = {.lex_state = 319}, - [262] = {.lex_state = 320}, - [263] = {.lex_state = 286}, - [264] = {.lex_state = 322}, + [257] = {.lex_state = 311}, + [258] = {.lex_state = 293}, + [259] = {.lex_state = 304}, + [260] = {.lex_state = 322}, + [261] = {.lex_state = 286}, + [262] = {.lex_state = 321}, + [263] = {.lex_state = 326}, + [264] = {.lex_state = 320}, [265] = {.lex_state = 320}, - [266] = {.lex_state = 320}, - [267] = {.lex_state = 316}, - [268] = {.lex_state = 315}, - [269] = {.lex_state = 276}, - [270] = {.lex_state = 326}, - [271] = {.lex_state = 327}, - [272] = {.lex_state = 326}, + [266] = {.lex_state = 321}, + [267] = {.lex_state = 286}, + [268] = {.lex_state = 323}, + [269] = {.lex_state = 321}, + [270] = {.lex_state = 321}, + [271] = {.lex_state = 317}, + [272] = {.lex_state = 316}, [273] = {.lex_state = 276}, - [274] = {.lex_state = 328}, - [275] = {.lex_state = 326}, - [276] = {.lex_state = 316}, - [277] = {.lex_state = 326}, - [278] = {.lex_state = 276}, - [279] = {.lex_state = 326}, - [280] = {.lex_state = 328}, - [281] = {.lex_state = 326}, - [282] = {.lex_state = 284}, - [283] = {.lex_state = 304}, + [274] = {.lex_state = 327}, + [275] = {.lex_state = 328}, + [276] = {.lex_state = 327}, + [277] = {.lex_state = 276}, + [278] = {.lex_state = 329}, + [279] = {.lex_state = 327}, + [280] = {.lex_state = 317}, + [281] = {.lex_state = 327}, + [282] = {.lex_state = 276}, + [283] = {.lex_state = 327}, [284] = {.lex_state = 329}, - [285] = {.lex_state = 284}, - [286] = {.lex_state = 326}, + [285] = {.lex_state = 327}, + [286] = {.lex_state = 284}, [287] = {.lex_state = 304}, [288] = {.lex_state = 330}, [289] = {.lex_state = 284}, - [290] = {.lex_state = 326}, + [290] = {.lex_state = 327}, [291] = {.lex_state = 304}, - [292] = {.lex_state = 300}, - [293] = {.lex_state = 304}, - [294] = {.lex_state = 304}, + [292] = {.lex_state = 331}, + [293] = {.lex_state = 284}, + [294] = {.lex_state = 327}, [295] = {.lex_state = 304}, - [296] = {.lex_state = 304}, + [296] = {.lex_state = 300}, [297] = {.lex_state = 304}, - [298] = {.lex_state = 331}, - [299] = {.lex_state = 326}, + [298] = {.lex_state = 304}, + [299] = {.lex_state = 304}, [300] = {.lex_state = 304}, [301] = {.lex_state = 304}, - [302] = {.lex_state = 304}, - [303] = {.lex_state = 304}, + [302] = {.lex_state = 332}, + [303] = {.lex_state = 327}, [304] = {.lex_state = 304}, [305] = {.lex_state = 304}, [306] = {.lex_state = 304}, @@ -11957,47 +12028,47 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [309] = {.lex_state = 304}, [310] = {.lex_state = 304}, [311] = {.lex_state = 304}, - [312] = {.lex_state = 331}, - [313] = {.lex_state = 331}, - [314] = {.lex_state = 331}, - [315] = {.lex_state = 331}, - [316] = {.lex_state = 331}, - [317] = {.lex_state = 331}, - [318] = {.lex_state = 331}, - [319] = {.lex_state = 331}, - [320] = {.lex_state = 331}, - [321] = {.lex_state = 331}, - [322] = {.lex_state = 309}, - [323] = {.lex_state = 304}, - [324] = {.lex_state = 331}, - [325] = {.lex_state = 300}, - [326] = {.lex_state = 331}, - [327] = {.lex_state = 315}, + [312] = {.lex_state = 304}, + [313] = {.lex_state = 304}, + [314] = {.lex_state = 304}, + [315] = {.lex_state = 304}, + [316] = {.lex_state = 332}, + [317] = {.lex_state = 332}, + [318] = {.lex_state = 332}, + [319] = {.lex_state = 332}, + [320] = {.lex_state = 332}, + [321] = {.lex_state = 332}, + [322] = {.lex_state = 332}, + [323] = {.lex_state = 332}, + [324] = {.lex_state = 332}, + [325] = {.lex_state = 332}, + [326] = {.lex_state = 310}, + [327] = {.lex_state = 304}, [328] = {.lex_state = 332}, - [329] = {.lex_state = 305}, - [330] = {.lex_state = 305}, - [331] = {.lex_state = 300}, - [332] = {.lex_state = 305}, - [333] = {.lex_state = 304}, - [334] = {.lex_state = 304}, - [335] = {.lex_state = 304}, - [336] = {.lex_state = 304}, + [329] = {.lex_state = 300}, + [330] = {.lex_state = 332}, + [331] = {.lex_state = 316}, + [332] = {.lex_state = 333}, + [333] = {.lex_state = 305}, + [334] = {.lex_state = 305}, + [335] = {.lex_state = 300}, + [336] = {.lex_state = 305}, [337] = {.lex_state = 304}, [338] = {.lex_state = 304}, - [339] = {.lex_state = 252}, - [340] = {.lex_state = 333}, - [341] = {.lex_state = 334}, - [342] = {.lex_state = 334}, - [343] = {.lex_state = 335}, - [344] = {.lex_state = 335}, - [345] = {.lex_state = 298}, + [339] = {.lex_state = 304}, + [340] = {.lex_state = 304}, + [341] = {.lex_state = 304}, + [342] = {.lex_state = 304}, + [343] = {.lex_state = 252}, + [344] = {.lex_state = 334}, + [345] = {.lex_state = 335}, [346] = {.lex_state = 335}, - [347] = {.lex_state = 333}, - [348] = {.lex_state = 334}, - [349] = {.lex_state = 304}, - [350] = {.lex_state = 304}, - [351] = {.lex_state = 304}, - [352] = {.lex_state = 304}, + [347] = {.lex_state = 336}, + [348] = {.lex_state = 336}, + [349] = {.lex_state = 298}, + [350] = {.lex_state = 336}, + [351] = {.lex_state = 334}, + [352] = {.lex_state = 335}, [353] = {.lex_state = 304}, [354] = {.lex_state = 304}, [355] = {.lex_state = 304}, @@ -12006,201 +12077,201 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [358] = {.lex_state = 304}, [359] = {.lex_state = 304}, [360] = {.lex_state = 304}, - [361] = {.lex_state = 333}, - [362] = {.lex_state = 333}, - [363] = {.lex_state = 333}, - [364] = {.lex_state = 333}, - [365] = {.lex_state = 333}, - [366] = {.lex_state = 333}, - [367] = {.lex_state = 333}, - [368] = {.lex_state = 333}, - [369] = {.lex_state = 333}, - [370] = {.lex_state = 333}, - [371] = {.lex_state = 309}, - [372] = {.lex_state = 304}, - [373] = {.lex_state = 333}, - [374] = {.lex_state = 302}, - [375] = {.lex_state = 305}, - [376] = {.lex_state = 305}, - [377] = {.lex_state = 335}, - [378] = {.lex_state = 298}, - [379] = {.lex_state = 333}, - [380] = {.lex_state = 334}, - [381] = {.lex_state = 335}, - [382] = {.lex_state = 300}, - [383] = {.lex_state = 333}, - [384] = {.lex_state = 315}, + [361] = {.lex_state = 304}, + [362] = {.lex_state = 304}, + [363] = {.lex_state = 304}, + [364] = {.lex_state = 304}, + [365] = {.lex_state = 334}, + [366] = {.lex_state = 334}, + [367] = {.lex_state = 334}, + [368] = {.lex_state = 334}, + [369] = {.lex_state = 334}, + [370] = {.lex_state = 334}, + [371] = {.lex_state = 334}, + [372] = {.lex_state = 334}, + [373] = {.lex_state = 334}, + [374] = {.lex_state = 334}, + [375] = {.lex_state = 310}, + [376] = {.lex_state = 304}, + [377] = {.lex_state = 334}, + [378] = {.lex_state = 302}, + [379] = {.lex_state = 305}, + [380] = {.lex_state = 305}, + [381] = {.lex_state = 336}, + [382] = {.lex_state = 298}, + [383] = {.lex_state = 334}, + [384] = {.lex_state = 335}, [385] = {.lex_state = 336}, - [386] = {.lex_state = 305}, - [387] = {.lex_state = 304}, - [388] = {.lex_state = 311}, + [386] = {.lex_state = 300}, + [387] = {.lex_state = 334}, + [388] = {.lex_state = 316}, [389] = {.lex_state = 337}, [390] = {.lex_state = 305}, - [391] = {.lex_state = 305}, - [392] = {.lex_state = 305}, - [393] = {.lex_state = 305}, - [394] = {.lex_state = 310}, - [395] = {.lex_state = 335}, - [396] = {.lex_state = 315}, - [397] = {.lex_state = 298}, - [398] = {.lex_state = 315}, - [399] = {.lex_state = 298}, - [400] = {.lex_state = 329}, - [401] = {.lex_state = 331}, - [402] = {.lex_state = 326}, - [403] = {.lex_state = 329}, - [404] = {.lex_state = 331}, - [405] = {.lex_state = 284}, - [406] = {.lex_state = 326}, - [407] = {.lex_state = 304}, - [408] = {.lex_state = 329}, - [409] = {.lex_state = 330}, - [410] = {.lex_state = 331}, - [411] = {.lex_state = 276}, - [412] = {.lex_state = 326}, - [413] = {.lex_state = 326}, - [414] = {.lex_state = 327}, - [415] = {.lex_state = 326}, - [416] = {.lex_state = 276}, - [417] = {.lex_state = 326}, - [418] = {.lex_state = 276}, - [419] = {.lex_state = 276}, - [420] = {.lex_state = 326}, - [421] = {.lex_state = 252}, - [422] = {.lex_state = 327}, - [423] = {.lex_state = 252}, - [424] = {.lex_state = 338}, - [425] = {.lex_state = 334}, - [426] = {.lex_state = 334}, - [427] = {.lex_state = 339}, - [428] = {.lex_state = 276}, - [429] = {.lex_state = 276}, - [430] = {.lex_state = 334}, - [431] = {.lex_state = 304}, - [432] = {.lex_state = 333}, - [433] = {.lex_state = 334}, - [434] = {.lex_state = 339}, - [435] = {.lex_state = 276}, - [436] = {.lex_state = 340}, - [437] = {.lex_state = 319}, - [438] = {.lex_state = 315}, - [439] = {.lex_state = 298}, - [440] = {.lex_state = 300}, - [441] = {.lex_state = 310}, - [442] = {.lex_state = 315}, - [443] = {.lex_state = 341}, - [444] = {.lex_state = 315}, - [445] = {.lex_state = 298}, - [446] = {.lex_state = 300}, - [447] = {.lex_state = 309}, - [448] = {.lex_state = 315}, - [449] = {.lex_state = 342}, - [450] = {.lex_state = 315}, - [451] = {.lex_state = 298}, - [452] = {.lex_state = 300}, - [453] = {.lex_state = 307}, - [454] = {.lex_state = 315}, - [455] = {.lex_state = 343}, - [456] = {.lex_state = 315}, - [457] = {.lex_state = 298}, - [458] = {.lex_state = 290}, - [459] = {.lex_state = 289}, - [460] = {.lex_state = 344}, - [461] = {.lex_state = 278}, - [462] = {.lex_state = 345}, - [463] = {.lex_state = 346}, - [464] = {.lex_state = 347}, - [465] = {.lex_state = 347}, - [466] = {.lex_state = 304}, - [467] = {.lex_state = 348}, - [468] = {.lex_state = 347}, - [469] = {.lex_state = 349}, - [470] = {.lex_state = 347}, - [471] = {.lex_state = 357}, - [472] = {.lex_state = 358}, - [473] = {.lex_state = 358}, - [474] = {.lex_state = 252}, - [475] = {.lex_state = 359}, - [476] = {.lex_state = 344}, - [477] = {.lex_state = 279}, - [478] = {.lex_state = 345}, - [479] = {.lex_state = 283}, - [480] = {.lex_state = 307}, - [481] = {.lex_state = 358}, - [482] = {.lex_state = 344}, - [483] = {.lex_state = 346}, - [484] = {.lex_state = 344}, - [485] = {.lex_state = 345}, - [486] = {.lex_state = 304}, - [487] = {.lex_state = 307}, - [488] = {.lex_state = 290}, - [489] = {.lex_state = 283}, - [490] = {.lex_state = 285}, - [491] = {.lex_state = 290}, - [492] = {.lex_state = 289}, - [493] = {.lex_state = 289}, + [391] = {.lex_state = 304}, + [392] = {.lex_state = 312}, + [393] = {.lex_state = 338}, + [394] = {.lex_state = 305}, + [395] = {.lex_state = 305}, + [396] = {.lex_state = 305}, + [397] = {.lex_state = 305}, + [398] = {.lex_state = 311}, + [399] = {.lex_state = 336}, + [400] = {.lex_state = 316}, + [401] = {.lex_state = 298}, + [402] = {.lex_state = 316}, + [403] = {.lex_state = 298}, + [404] = {.lex_state = 330}, + [405] = {.lex_state = 332}, + [406] = {.lex_state = 327}, + [407] = {.lex_state = 330}, + [408] = {.lex_state = 332}, + [409] = {.lex_state = 284}, + [410] = {.lex_state = 327}, + [411] = {.lex_state = 304}, + [412] = {.lex_state = 330}, + [413] = {.lex_state = 331}, + [414] = {.lex_state = 332}, + [415] = {.lex_state = 276}, + [416] = {.lex_state = 327}, + [417] = {.lex_state = 327}, + [418] = {.lex_state = 328}, + [419] = {.lex_state = 327}, + [420] = {.lex_state = 276}, + [421] = {.lex_state = 327}, + [422] = {.lex_state = 276}, + [423] = {.lex_state = 276}, + [424] = {.lex_state = 327}, + [425] = {.lex_state = 252}, + [426] = {.lex_state = 328}, + [427] = {.lex_state = 252}, + [428] = {.lex_state = 339}, + [429] = {.lex_state = 335}, + [430] = {.lex_state = 335}, + [431] = {.lex_state = 340}, + [432] = {.lex_state = 276}, + [433] = {.lex_state = 276}, + [434] = {.lex_state = 335}, + [435] = {.lex_state = 304}, + [436] = {.lex_state = 334}, + [437] = {.lex_state = 335}, + [438] = {.lex_state = 340}, + [439] = {.lex_state = 276}, + [440] = {.lex_state = 341}, + [441] = {.lex_state = 320}, + [442] = {.lex_state = 316}, + [443] = {.lex_state = 298}, + [444] = {.lex_state = 300}, + [445] = {.lex_state = 311}, + [446] = {.lex_state = 316}, + [447] = {.lex_state = 342}, + [448] = {.lex_state = 316}, + [449] = {.lex_state = 298}, + [450] = {.lex_state = 300}, + [451] = {.lex_state = 310}, + [452] = {.lex_state = 316}, + [453] = {.lex_state = 343}, + [454] = {.lex_state = 316}, + [455] = {.lex_state = 298}, + [456] = {.lex_state = 300}, + [457] = {.lex_state = 308}, + [458] = {.lex_state = 316}, + [459] = {.lex_state = 344}, + [460] = {.lex_state = 316}, + [461] = {.lex_state = 298}, + [462] = {.lex_state = 290}, + [463] = {.lex_state = 289}, + [464] = {.lex_state = 345}, + [465] = {.lex_state = 278}, + [466] = {.lex_state = 346}, + [467] = {.lex_state = 347}, + [468] = {.lex_state = 348}, + [469] = {.lex_state = 348}, + [470] = {.lex_state = 304}, + [471] = {.lex_state = 349}, + [472] = {.lex_state = 348}, + [473] = {.lex_state = 350}, + [474] = {.lex_state = 348}, + [475] = {.lex_state = 358}, + [476] = {.lex_state = 359}, + [477] = {.lex_state = 359}, + [478] = {.lex_state = 252}, + [479] = {.lex_state = 360}, + [480] = {.lex_state = 345}, + [481] = {.lex_state = 279}, + [482] = {.lex_state = 346}, + [483] = {.lex_state = 283}, + [484] = {.lex_state = 308}, + [485] = {.lex_state = 359}, + [486] = {.lex_state = 345}, + [487] = {.lex_state = 347}, + [488] = {.lex_state = 345}, + [489] = {.lex_state = 346}, + [490] = {.lex_state = 304}, + [491] = {.lex_state = 308}, + [492] = {.lex_state = 290}, + [493] = {.lex_state = 283}, [494] = {.lex_state = 285}, - [495] = {.lex_state = 349}, - [496] = {.lex_state = 360}, - [497] = {.lex_state = 345}, - [498] = {.lex_state = 358}, - [499] = {.lex_state = 345}, - [500] = {.lex_state = 345}, - [501] = {.lex_state = 345}, - [502] = {.lex_state = 345}, - [503] = {.lex_state = 331}, - [504] = {.lex_state = 345}, - [505] = {.lex_state = 361}, - [506] = {.lex_state = 357}, - [507] = {.lex_state = 362}, - [508] = {.lex_state = 279}, - [509] = {.lex_state = 284}, - [510] = {.lex_state = 331}, - [511] = {.lex_state = 357}, - [512] = {.lex_state = 308}, - [513] = {.lex_state = 331}, - [514] = {.lex_state = 308}, - [515] = {.lex_state = 349}, - [516] = {.lex_state = 311}, - [517] = {.lex_state = 349}, - [518] = {.lex_state = 312}, - [519] = {.lex_state = 349}, - [520] = {.lex_state = 345}, - [521] = {.lex_state = 345}, - [522] = {.lex_state = 345}, - [523] = {.lex_state = 349}, - [524] = {.lex_state = 311}, - [525] = {.lex_state = 312}, - [526] = {.lex_state = 345}, - [527] = {.lex_state = 284}, - [528] = {.lex_state = 308}, - [529] = {.lex_state = 331}, - [530] = {.lex_state = 349}, - [531] = {.lex_state = 311}, - [532] = {.lex_state = 312}, - [533] = {.lex_state = 345}, - [534] = {.lex_state = 347}, - [535] = {.lex_state = 347}, - [536] = {.lex_state = 304}, - [537] = {.lex_state = 348}, - [538] = {.lex_state = 347}, - [539] = {.lex_state = 347}, - [540] = {.lex_state = 360}, - [541] = {.lex_state = 363}, - [542] = {.lex_state = 347}, - [543] = {.lex_state = 304}, - [544] = {.lex_state = 300}, - [545] = {.lex_state = 304}, - [546] = {.lex_state = 304}, + [495] = {.lex_state = 290}, + [496] = {.lex_state = 289}, + [497] = {.lex_state = 289}, + [498] = {.lex_state = 285}, + [499] = {.lex_state = 350}, + [500] = {.lex_state = 361}, + [501] = {.lex_state = 346}, + [502] = {.lex_state = 359}, + [503] = {.lex_state = 346}, + [504] = {.lex_state = 346}, + [505] = {.lex_state = 346}, + [506] = {.lex_state = 346}, + [507] = {.lex_state = 332}, + [508] = {.lex_state = 346}, + [509] = {.lex_state = 362}, + [510] = {.lex_state = 358}, + [511] = {.lex_state = 363}, + [512] = {.lex_state = 279}, + [513] = {.lex_state = 284}, + [514] = {.lex_state = 332}, + [515] = {.lex_state = 358}, + [516] = {.lex_state = 309}, + [517] = {.lex_state = 332}, + [518] = {.lex_state = 309}, + [519] = {.lex_state = 350}, + [520] = {.lex_state = 312}, + [521] = {.lex_state = 350}, + [522] = {.lex_state = 313}, + [523] = {.lex_state = 350}, + [524] = {.lex_state = 346}, + [525] = {.lex_state = 346}, + [526] = {.lex_state = 346}, + [527] = {.lex_state = 350}, + [528] = {.lex_state = 312}, + [529] = {.lex_state = 313}, + [530] = {.lex_state = 346}, + [531] = {.lex_state = 284}, + [532] = {.lex_state = 309}, + [533] = {.lex_state = 332}, + [534] = {.lex_state = 350}, + [535] = {.lex_state = 312}, + [536] = {.lex_state = 313}, + [537] = {.lex_state = 346}, + [538] = {.lex_state = 348}, + [539] = {.lex_state = 348}, + [540] = {.lex_state = 304}, + [541] = {.lex_state = 349}, + [542] = {.lex_state = 348}, + [543] = {.lex_state = 348}, + [544] = {.lex_state = 361}, + [545] = {.lex_state = 364}, + [546] = {.lex_state = 348}, [547] = {.lex_state = 304}, - [548] = {.lex_state = 304}, + [548] = {.lex_state = 300}, [549] = {.lex_state = 304}, - [550] = {.lex_state = 369}, - [551] = {.lex_state = 345}, + [550] = {.lex_state = 304}, + [551] = {.lex_state = 304}, [552] = {.lex_state = 304}, [553] = {.lex_state = 304}, - [554] = {.lex_state = 304}, - [555] = {.lex_state = 304}, + [554] = {.lex_state = 370}, + [555] = {.lex_state = 346}, [556] = {.lex_state = 304}, [557] = {.lex_state = 304}, [558] = {.lex_state = 304}, @@ -12209,226 +12280,226 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [561] = {.lex_state = 304}, [562] = {.lex_state = 304}, [563] = {.lex_state = 304}, - [564] = {.lex_state = 369}, - [565] = {.lex_state = 369}, - [566] = {.lex_state = 369}, - [567] = {.lex_state = 369}, - [568] = {.lex_state = 369}, - [569] = {.lex_state = 369}, - [570] = {.lex_state = 369}, - [571] = {.lex_state = 369}, - [572] = {.lex_state = 369}, - [573] = {.lex_state = 369}, - [574] = {.lex_state = 309}, - [575] = {.lex_state = 304}, - [576] = {.lex_state = 369}, - [577] = {.lex_state = 300}, - [578] = {.lex_state = 369}, - [579] = {.lex_state = 315}, + [564] = {.lex_state = 304}, + [565] = {.lex_state = 304}, + [566] = {.lex_state = 304}, + [567] = {.lex_state = 304}, + [568] = {.lex_state = 370}, + [569] = {.lex_state = 370}, + [570] = {.lex_state = 370}, + [571] = {.lex_state = 370}, + [572] = {.lex_state = 370}, + [573] = {.lex_state = 370}, + [574] = {.lex_state = 370}, + [575] = {.lex_state = 370}, + [576] = {.lex_state = 370}, + [577] = {.lex_state = 370}, + [578] = {.lex_state = 310}, + [579] = {.lex_state = 304}, [580] = {.lex_state = 370}, - [581] = {.lex_state = 315}, - [582] = {.lex_state = 298}, - [583] = {.lex_state = 349}, - [584] = {.lex_state = 361}, - [585] = {.lex_state = 357}, - [586] = {.lex_state = 331}, - [587] = {.lex_state = 357}, - [588] = {.lex_state = 308}, - [589] = {.lex_state = 331}, - [590] = {.lex_state = 308}, - [591] = {.lex_state = 349}, - [592] = {.lex_state = 311}, - [593] = {.lex_state = 349}, - [594] = {.lex_state = 312}, - [595] = {.lex_state = 349}, - [596] = {.lex_state = 349}, - [597] = {.lex_state = 311}, - [598] = {.lex_state = 312}, - [599] = {.lex_state = 308}, - [600] = {.lex_state = 331}, - [601] = {.lex_state = 349}, - [602] = {.lex_state = 311}, - [603] = {.lex_state = 312}, - [604] = {.lex_state = 304}, - [605] = {.lex_state = 369}, - [606] = {.lex_state = 349}, - [607] = {.lex_state = 345}, - [608] = {.lex_state = 349}, - [609] = {.lex_state = 345}, - [610] = {.lex_state = 309}, - [611] = {.lex_state = 349}, - [612] = {.lex_state = 345}, - [613] = {.lex_state = 304}, - [614] = {.lex_state = 369}, - [615] = {.lex_state = 349}, - [616] = {.lex_state = 345}, + [581] = {.lex_state = 300}, + [582] = {.lex_state = 370}, + [583] = {.lex_state = 316}, + [584] = {.lex_state = 371}, + [585] = {.lex_state = 316}, + [586] = {.lex_state = 298}, + [587] = {.lex_state = 350}, + [588] = {.lex_state = 362}, + [589] = {.lex_state = 358}, + [590] = {.lex_state = 332}, + [591] = {.lex_state = 358}, + [592] = {.lex_state = 309}, + [593] = {.lex_state = 332}, + [594] = {.lex_state = 309}, + [595] = {.lex_state = 350}, + [596] = {.lex_state = 312}, + [597] = {.lex_state = 350}, + [598] = {.lex_state = 313}, + [599] = {.lex_state = 350}, + [600] = {.lex_state = 350}, + [601] = {.lex_state = 312}, + [602] = {.lex_state = 313}, + [603] = {.lex_state = 309}, + [604] = {.lex_state = 332}, + [605] = {.lex_state = 350}, + [606] = {.lex_state = 312}, + [607] = {.lex_state = 313}, + [608] = {.lex_state = 304}, + [609] = {.lex_state = 370}, + [610] = {.lex_state = 350}, + [611] = {.lex_state = 346}, + [612] = {.lex_state = 350}, + [613] = {.lex_state = 346}, + [614] = {.lex_state = 310}, + [615] = {.lex_state = 350}, + [616] = {.lex_state = 346}, [617] = {.lex_state = 304}, - [618] = {.lex_state = 369}, - [619] = {.lex_state = 349}, - [620] = {.lex_state = 347}, - [621] = {.lex_state = 347}, - [622] = {.lex_state = 304}, - [623] = {.lex_state = 348}, - [624] = {.lex_state = 347}, - [625] = {.lex_state = 347}, - [626] = {.lex_state = 360}, - [627] = {.lex_state = 371}, - [628] = {.lex_state = 349}, - [629] = {.lex_state = 345}, - [630] = {.lex_state = 349}, - [631] = {.lex_state = 361}, - [632] = {.lex_state = 357}, - [633] = {.lex_state = 331}, - [634] = {.lex_state = 357}, - [635] = {.lex_state = 308}, - [636] = {.lex_state = 331}, - [637] = {.lex_state = 308}, - [638] = {.lex_state = 349}, - [639] = {.lex_state = 311}, - [640] = {.lex_state = 349}, - [641] = {.lex_state = 312}, - [642] = {.lex_state = 349}, - [643] = {.lex_state = 349}, - [644] = {.lex_state = 311}, - [645] = {.lex_state = 312}, - [646] = {.lex_state = 308}, - [647] = {.lex_state = 331}, - [648] = {.lex_state = 349}, - [649] = {.lex_state = 311}, - [650] = {.lex_state = 312}, - [651] = {.lex_state = 304}, - [652] = {.lex_state = 369}, - [653] = {.lex_state = 349}, - [654] = {.lex_state = 349}, - [655] = {.lex_state = 309}, - [656] = {.lex_state = 349}, - [657] = {.lex_state = 304}, - [658] = {.lex_state = 369}, - [659] = {.lex_state = 349}, - [660] = {.lex_state = 304}, - [661] = {.lex_state = 369}, - [662] = {.lex_state = 349}, - [663] = {.lex_state = 371}, - [664] = {.lex_state = 349}, - [665] = {.lex_state = 304}, - [666] = {.lex_state = 369}, - [667] = {.lex_state = 349}, - [668] = {.lex_state = 349}, - [669] = {.lex_state = 309}, - [670] = {.lex_state = 349}, - [671] = {.lex_state = 304}, - [672] = {.lex_state = 369}, - [673] = {.lex_state = 349}, - [674] = {.lex_state = 304}, - [675] = {.lex_state = 369}, - [676] = {.lex_state = 349}, - [677] = {.lex_state = 347}, - [678] = {.lex_state = 347}, - [679] = {.lex_state = 304}, - [680] = {.lex_state = 348}, - [681] = {.lex_state = 347}, - [682] = {.lex_state = 347}, - [683] = {.lex_state = 360}, - [684] = {.lex_state = 345}, - [685] = {.lex_state = 349}, - [686] = {.lex_state = 349}, + [618] = {.lex_state = 370}, + [619] = {.lex_state = 350}, + [620] = {.lex_state = 346}, + [621] = {.lex_state = 304}, + [622] = {.lex_state = 370}, + [623] = {.lex_state = 350}, + [624] = {.lex_state = 348}, + [625] = {.lex_state = 348}, + [626] = {.lex_state = 304}, + [627] = {.lex_state = 349}, + [628] = {.lex_state = 348}, + [629] = {.lex_state = 348}, + [630] = {.lex_state = 361}, + [631] = {.lex_state = 372}, + [632] = {.lex_state = 350}, + [633] = {.lex_state = 346}, + [634] = {.lex_state = 350}, + [635] = {.lex_state = 362}, + [636] = {.lex_state = 358}, + [637] = {.lex_state = 332}, + [638] = {.lex_state = 358}, + [639] = {.lex_state = 309}, + [640] = {.lex_state = 332}, + [641] = {.lex_state = 309}, + [642] = {.lex_state = 350}, + [643] = {.lex_state = 312}, + [644] = {.lex_state = 350}, + [645] = {.lex_state = 313}, + [646] = {.lex_state = 350}, + [647] = {.lex_state = 350}, + [648] = {.lex_state = 312}, + [649] = {.lex_state = 313}, + [650] = {.lex_state = 309}, + [651] = {.lex_state = 332}, + [652] = {.lex_state = 350}, + [653] = {.lex_state = 312}, + [654] = {.lex_state = 313}, + [655] = {.lex_state = 304}, + [656] = {.lex_state = 370}, + [657] = {.lex_state = 350}, + [658] = {.lex_state = 350}, + [659] = {.lex_state = 310}, + [660] = {.lex_state = 350}, + [661] = {.lex_state = 304}, + [662] = {.lex_state = 370}, + [663] = {.lex_state = 350}, + [664] = {.lex_state = 304}, + [665] = {.lex_state = 370}, + [666] = {.lex_state = 350}, + [667] = {.lex_state = 372}, + [668] = {.lex_state = 350}, + [669] = {.lex_state = 304}, + [670] = {.lex_state = 370}, + [671] = {.lex_state = 350}, + [672] = {.lex_state = 350}, + [673] = {.lex_state = 310}, + [674] = {.lex_state = 350}, + [675] = {.lex_state = 304}, + [676] = {.lex_state = 370}, + [677] = {.lex_state = 350}, + [678] = {.lex_state = 304}, + [679] = {.lex_state = 370}, + [680] = {.lex_state = 350}, + [681] = {.lex_state = 348}, + [682] = {.lex_state = 348}, + [683] = {.lex_state = 304}, + [684] = {.lex_state = 349}, + [685] = {.lex_state = 348}, + [686] = {.lex_state = 348}, [687] = {.lex_state = 361}, - [688] = {.lex_state = 357}, - [689] = {.lex_state = 331}, - [690] = {.lex_state = 357}, - [691] = {.lex_state = 308}, - [692] = {.lex_state = 331}, - [693] = {.lex_state = 308}, - [694] = {.lex_state = 349}, - [695] = {.lex_state = 311}, - [696] = {.lex_state = 349}, - [697] = {.lex_state = 312}, - [698] = {.lex_state = 349}, - [699] = {.lex_state = 349}, - [700] = {.lex_state = 311}, - [701] = {.lex_state = 312}, - [702] = {.lex_state = 308}, - [703] = {.lex_state = 331}, - [704] = {.lex_state = 349}, - [705] = {.lex_state = 311}, - [706] = {.lex_state = 312}, - [707] = {.lex_state = 304}, - [708] = {.lex_state = 369}, - [709] = {.lex_state = 349}, - [710] = {.lex_state = 349}, - [711] = {.lex_state = 309}, - [712] = {.lex_state = 349}, - [713] = {.lex_state = 304}, - [714] = {.lex_state = 369}, - [715] = {.lex_state = 349}, - [716] = {.lex_state = 304}, - [717] = {.lex_state = 369}, - [718] = {.lex_state = 349}, - [719] = {.lex_state = 345}, - [720] = {.lex_state = 349}, - [721] = {.lex_state = 283}, - [722] = {.lex_state = 288}, - [723] = {.lex_state = 278}, - [724] = {.lex_state = 376}, - [725] = {.lex_state = 377}, - [726] = {.lex_state = 278}, - [727] = {.lex_state = 279}, - [728] = {.lex_state = 284}, - [729] = {.lex_state = 284}, + [688] = {.lex_state = 346}, + [689] = {.lex_state = 350}, + [690] = {.lex_state = 350}, + [691] = {.lex_state = 362}, + [692] = {.lex_state = 358}, + [693] = {.lex_state = 332}, + [694] = {.lex_state = 358}, + [695] = {.lex_state = 309}, + [696] = {.lex_state = 332}, + [697] = {.lex_state = 309}, + [698] = {.lex_state = 350}, + [699] = {.lex_state = 312}, + [700] = {.lex_state = 350}, + [701] = {.lex_state = 313}, + [702] = {.lex_state = 350}, + [703] = {.lex_state = 350}, + [704] = {.lex_state = 312}, + [705] = {.lex_state = 313}, + [706] = {.lex_state = 309}, + [707] = {.lex_state = 332}, + [708] = {.lex_state = 350}, + [709] = {.lex_state = 312}, + [710] = {.lex_state = 313}, + [711] = {.lex_state = 304}, + [712] = {.lex_state = 370}, + [713] = {.lex_state = 350}, + [714] = {.lex_state = 350}, + [715] = {.lex_state = 310}, + [716] = {.lex_state = 350}, + [717] = {.lex_state = 304}, + [718] = {.lex_state = 370}, + [719] = {.lex_state = 350}, + [720] = {.lex_state = 304}, + [721] = {.lex_state = 370}, + [722] = {.lex_state = 350}, + [723] = {.lex_state = 346}, + [724] = {.lex_state = 350}, + [725] = {.lex_state = 283}, + [726] = {.lex_state = 288}, + [727] = {.lex_state = 278}, + [728] = {.lex_state = 377}, + [729] = {.lex_state = 378}, [730] = {.lex_state = 278}, - [731] = {.lex_state = 377}, - [732] = {.lex_state = 278}, - [733] = {.lex_state = 278}, - [734] = {.lex_state = 378}, - [735] = {.lex_state = 278}, - [736] = {.lex_state = 379}, - [737] = {.lex_state = 382}, - [738] = {.lex_state = 378}, + [731] = {.lex_state = 279}, + [732] = {.lex_state = 284}, + [733] = {.lex_state = 284}, + [734] = {.lex_state = 278}, + [735] = {.lex_state = 378}, + [736] = {.lex_state = 278}, + [737] = {.lex_state = 278}, + [738] = {.lex_state = 379}, [739] = {.lex_state = 278}, - [740] = {.lex_state = 382}, - [741] = {.lex_state = 278}, + [740] = {.lex_state = 380}, + [741] = {.lex_state = 383}, [742] = {.lex_state = 379}, - [743] = {.lex_state = 389}, - [744] = {.lex_state = 253}, + [743] = {.lex_state = 278}, + [744] = {.lex_state = 383}, [745] = {.lex_state = 278}, - [746] = {.lex_state = 392}, - [747] = {.lex_state = 393}, - [748] = {.lex_state = 278}, - [749] = {.lex_state = 395}, - [750] = {.lex_state = 278}, - [751] = {.lex_state = 312}, - [752] = {.lex_state = 393}, + [746] = {.lex_state = 380}, + [747] = {.lex_state = 390}, + [748] = {.lex_state = 253}, + [749] = {.lex_state = 278}, + [750] = {.lex_state = 393}, + [751] = {.lex_state = 394}, + [752] = {.lex_state = 278}, [753] = {.lex_state = 396}, - [754] = {.lex_state = 393}, - [755] = {.lex_state = 312}, - [756] = {.lex_state = 396}, - [757] = {.lex_state = 393}, - [758] = {.lex_state = 312}, - [759] = {.lex_state = 312}, - [760] = {.lex_state = 395}, - [761] = {.lex_state = 278}, - [762] = {.lex_state = 278}, - [763] = {.lex_state = 397}, - [764] = {.lex_state = 312}, - [765] = {.lex_state = 398}, - [766] = {.lex_state = 399}, - [767] = {.lex_state = 278}, - [768] = {.lex_state = 565}, - [769] = {.lex_state = 566}, - [770] = {.lex_state = 567}, - [771] = {.lex_state = 568}, - [772] = {.lex_state = 293}, - [773] = {.lex_state = 264}, - [774] = {.lex_state = 569}, - [775] = {.lex_state = 298}, - [776] = {.lex_state = 263}, - [777] = {.lex_state = 271}, - [778] = {.lex_state = 349}, - [779] = {.lex_state = 347}, - [780] = {.lex_state = 304}, - [781] = {.lex_state = 304}, - [782] = {.lex_state = 304}, - [783] = {.lex_state = 304}, + [754] = {.lex_state = 278}, + [755] = {.lex_state = 313}, + [756] = {.lex_state = 394}, + [757] = {.lex_state = 397}, + [758] = {.lex_state = 394}, + [759] = {.lex_state = 313}, + [760] = {.lex_state = 397}, + [761] = {.lex_state = 394}, + [762] = {.lex_state = 313}, + [763] = {.lex_state = 313}, + [764] = {.lex_state = 396}, + [765] = {.lex_state = 278}, + [766] = {.lex_state = 278}, + [767] = {.lex_state = 398}, + [768] = {.lex_state = 313}, + [769] = {.lex_state = 399}, + [770] = {.lex_state = 400}, + [771] = {.lex_state = 278}, + [772] = {.lex_state = 566}, + [773] = {.lex_state = 567}, + [774] = {.lex_state = 568}, + [775] = {.lex_state = 569}, + [776] = {.lex_state = 293}, + [777] = {.lex_state = 264}, + [778] = {.lex_state = 570}, + [779] = {.lex_state = 298}, + [780] = {.lex_state = 263}, + [781] = {.lex_state = 271}, + [782] = {.lex_state = 350}, + [783] = {.lex_state = 348}, [784] = {.lex_state = 304}, [785] = {.lex_state = 304}, [786] = {.lex_state = 304}, @@ -12437,388 +12508,392 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [789] = {.lex_state = 304}, [790] = {.lex_state = 304}, [791] = {.lex_state = 304}, - [792] = {.lex_state = 570}, + [792] = {.lex_state = 304}, [793] = {.lex_state = 304}, - [794] = {.lex_state = 252}, - [795] = {.lex_state = 571}, - [796] = {.lex_state = 572}, - [797] = {.lex_state = 278}, - [798] = {.lex_state = 382}, - [799] = {.lex_state = 278}, - [800] = {.lex_state = 285}, - [801] = {.lex_state = 279}, - [802] = {.lex_state = 286}, - [803] = {.lex_state = 320}, - [804] = {.lex_state = 289}, - [805] = {.lex_state = 346}, - [806] = {.lex_state = 264}, - [807] = {.lex_state = 276}, - [808] = {.lex_state = 334}, - [809] = {.lex_state = 326}, - [810] = {.lex_state = 334}, - [811] = {.lex_state = 315}, - [812] = {.lex_state = 312}, - [813] = {.lex_state = 345}, - [814] = {.lex_state = 305}, - [815] = {.lex_state = 337}, - [816] = {.lex_state = 315}, - [817] = {.lex_state = 305}, - [818] = {.lex_state = 335}, - [819] = {.lex_state = 285}, - [820] = {.lex_state = 278}, - [821] = {.lex_state = 289}, - [822] = {.lex_state = 313}, - [823] = {.lex_state = 326}, - [824] = {.lex_state = 330}, - [825] = {.lex_state = 312}, - [826] = {.lex_state = 335}, - [827] = {.lex_state = 298}, - [828] = {.lex_state = 333}, - [829] = {.lex_state = 334}, - [830] = {.lex_state = 574}, - [831] = {.lex_state = 345}, - [832] = {.lex_state = 326}, - [833] = {.lex_state = 304}, - [834] = {.lex_state = 331}, - [835] = {.lex_state = 326}, - [836] = {.lex_state = 276}, + [794] = {.lex_state = 304}, + [795] = {.lex_state = 304}, + [796] = {.lex_state = 571}, + [797] = {.lex_state = 304}, + [798] = {.lex_state = 252}, + [799] = {.lex_state = 572}, + [800] = {.lex_state = 573}, + [801] = {.lex_state = 278}, + [802] = {.lex_state = 383}, + [803] = {.lex_state = 278}, + [804] = {.lex_state = 285}, + [805] = {.lex_state = 279}, + [806] = {.lex_state = 286}, + [807] = {.lex_state = 321}, + [808] = {.lex_state = 289}, + [809] = {.lex_state = 347}, + [810] = {.lex_state = 264}, + [811] = {.lex_state = 276}, + [812] = {.lex_state = 335}, + [813] = {.lex_state = 327}, + [814] = {.lex_state = 335}, + [815] = {.lex_state = 316}, + [816] = {.lex_state = 313}, + [817] = {.lex_state = 346}, + [818] = {.lex_state = 305}, + [819] = {.lex_state = 338}, + [820] = {.lex_state = 316}, + [821] = {.lex_state = 305}, + [822] = {.lex_state = 336}, + [823] = {.lex_state = 285}, + [824] = {.lex_state = 278}, + [825] = {.lex_state = 289}, + [826] = {.lex_state = 314}, + [827] = {.lex_state = 327}, + [828] = {.lex_state = 331}, + [829] = {.lex_state = 313}, + [830] = {.lex_state = 336}, + [831] = {.lex_state = 298}, + [832] = {.lex_state = 334}, + [833] = {.lex_state = 335}, + [834] = {.lex_state = 575}, + [835] = {.lex_state = 346}, + [836] = {.lex_state = 327}, [837] = {.lex_state = 304}, - [838] = {.lex_state = 286}, - [839] = {.lex_state = 575}, - [840] = {.lex_state = 576}, - [841] = {.lex_state = 310}, + [838] = {.lex_state = 332}, + [839] = {.lex_state = 327}, + [840] = {.lex_state = 276}, + [841] = {.lex_state = 304}, [842] = {.lex_state = 286}, - [843] = {.lex_state = 325}, - [844] = {.lex_state = 310}, - [845] = {.lex_state = 286}, - [846] = {.lex_state = 285}, - [847] = {.lex_state = 577}, - [848] = {.lex_state = 300}, - [849] = {.lex_state = 304}, - [850] = {.lex_state = 304}, - [851] = {.lex_state = 305}, - [852] = {.lex_state = 305}, - [853] = {.lex_state = 305}, - [854] = {.lex_state = 305}, + [843] = {.lex_state = 576}, + [844] = {.lex_state = 577}, + [845] = {.lex_state = 311}, + [846] = {.lex_state = 286}, + [847] = {.lex_state = 326}, + [848] = {.lex_state = 311}, + [849] = {.lex_state = 286}, + [850] = {.lex_state = 285}, + [851] = {.lex_state = 578}, + [852] = {.lex_state = 300}, + [853] = {.lex_state = 304}, + [854] = {.lex_state = 304}, [855] = {.lex_state = 305}, [856] = {.lex_state = 305}, - [857] = {.lex_state = 315}, - [858] = {.lex_state = 298}, - [859] = {.lex_state = 304}, - [860] = {.lex_state = 578}, - [861] = {.lex_state = 579}, - [862] = {.lex_state = 569}, - [863] = {.lex_state = 349}, - [864] = {.lex_state = 305}, - [865] = {.lex_state = 305}, - [866] = {.lex_state = 300}, - [867] = {.lex_state = 349}, - [868] = {.lex_state = 304}, - [869] = {.lex_state = 304}, - [870] = {.lex_state = 304}, - [871] = {.lex_state = 304}, + [857] = {.lex_state = 305}, + [858] = {.lex_state = 305}, + [859] = {.lex_state = 305}, + [860] = {.lex_state = 305}, + [861] = {.lex_state = 316}, + [862] = {.lex_state = 298}, + [863] = {.lex_state = 304}, + [864] = {.lex_state = 579}, + [865] = {.lex_state = 580}, + [866] = {.lex_state = 570}, + [867] = {.lex_state = 350}, + [868] = {.lex_state = 305}, + [869] = {.lex_state = 305}, + [870] = {.lex_state = 300}, + [871] = {.lex_state = 350}, [872] = {.lex_state = 304}, - [873] = {.lex_state = 580}, - [874] = {.lex_state = 349}, + [873] = {.lex_state = 304}, + [874] = {.lex_state = 304}, [875] = {.lex_state = 304}, [876] = {.lex_state = 304}, - [877] = {.lex_state = 304}, - [878] = {.lex_state = 304}, + [877] = {.lex_state = 581}, + [878] = {.lex_state = 350}, [879] = {.lex_state = 304}, [880] = {.lex_state = 304}, [881] = {.lex_state = 304}, [882] = {.lex_state = 304}, - [883] = {.lex_state = 312}, - [884] = {.lex_state = 349}, - [885] = {.lex_state = 345}, - [886] = {.lex_state = 580}, - [887] = {.lex_state = 580}, - [888] = {.lex_state = 580}, - [889] = {.lex_state = 580}, - [890] = {.lex_state = 580}, - [891] = {.lex_state = 580}, - [892] = {.lex_state = 580}, - [893] = {.lex_state = 309}, - [894] = {.lex_state = 304}, - [895] = {.lex_state = 580}, - [896] = {.lex_state = 345}, - [897] = {.lex_state = 300}, - [898] = {.lex_state = 580}, - [899] = {.lex_state = 315}, - [900] = {.lex_state = 581}, - [901] = {.lex_state = 580}, - [902] = {.lex_state = 580}, - [903] = {.lex_state = 580}, - [904] = {.lex_state = 580}, - [905] = {.lex_state = 580}, - [906] = {.lex_state = 345}, - [907] = {.lex_state = 315}, - [908] = {.lex_state = 298}, - [909] = {.lex_state = 345}, - [910] = {.lex_state = 580}, - [911] = {.lex_state = 304}, - [912] = {.lex_state = 580}, - [913] = {.lex_state = 286}, - [914] = {.lex_state = 339}, - [915] = {.lex_state = 276}, - [916] = {.lex_state = 276}, - [917] = {.lex_state = 285}, - [918] = {.lex_state = 322}, - [919] = {.lex_state = 304}, - [920] = {.lex_state = 286}, - [921] = {.lex_state = 320}, - [922] = {.lex_state = 289}, - [923] = {.lex_state = 285}, - [924] = {.lex_state = 284}, - [925] = {.lex_state = 285}, - [926] = {.lex_state = 304}, - [927] = {.lex_state = 278}, - [928] = {.lex_state = 331}, - [929] = {.lex_state = 326}, - [930] = {.lex_state = 284}, - [931] = {.lex_state = 582}, - [932] = {.lex_state = 286}, - [933] = {.lex_state = 331}, - [934] = {.lex_state = 583}, - [935] = {.lex_state = 322}, - [936] = {.lex_state = 584}, - [937] = {.lex_state = 278}, - [938] = {.lex_state = 585}, - [939] = {.lex_state = 326}, - [940] = {.lex_state = 276}, - [941] = {.lex_state = 586}, - [942] = {.lex_state = 326}, - [943] = {.lex_state = 276}, - [944] = {.lex_state = 587}, - [945] = {.lex_state = 305}, - [946] = {.lex_state = 300}, - [947] = {.lex_state = 305}, - [948] = {.lex_state = 315}, - [949] = {.lex_state = 577}, - [950] = {.lex_state = 305}, + [883] = {.lex_state = 304}, + [884] = {.lex_state = 304}, + [885] = {.lex_state = 304}, + [886] = {.lex_state = 304}, + [887] = {.lex_state = 313}, + [888] = {.lex_state = 350}, + [889] = {.lex_state = 346}, + [890] = {.lex_state = 581}, + [891] = {.lex_state = 581}, + [892] = {.lex_state = 581}, + [893] = {.lex_state = 581}, + [894] = {.lex_state = 581}, + [895] = {.lex_state = 581}, + [896] = {.lex_state = 581}, + [897] = {.lex_state = 310}, + [898] = {.lex_state = 304}, + [899] = {.lex_state = 581}, + [900] = {.lex_state = 346}, + [901] = {.lex_state = 300}, + [902] = {.lex_state = 581}, + [903] = {.lex_state = 316}, + [904] = {.lex_state = 582}, + [905] = {.lex_state = 581}, + [906] = {.lex_state = 581}, + [907] = {.lex_state = 581}, + [908] = {.lex_state = 581}, + [909] = {.lex_state = 581}, + [910] = {.lex_state = 346}, + [911] = {.lex_state = 316}, + [912] = {.lex_state = 298}, + [913] = {.lex_state = 346}, + [914] = {.lex_state = 581}, + [915] = {.lex_state = 304}, + [916] = {.lex_state = 581}, + [917] = {.lex_state = 286}, + [918] = {.lex_state = 340}, + [919] = {.lex_state = 276}, + [920] = {.lex_state = 276}, + [921] = {.lex_state = 285}, + [922] = {.lex_state = 323}, + [923] = {.lex_state = 304}, + [924] = {.lex_state = 286}, + [925] = {.lex_state = 321}, + [926] = {.lex_state = 289}, + [927] = {.lex_state = 285}, + [928] = {.lex_state = 284}, + [929] = {.lex_state = 285}, + [930] = {.lex_state = 304}, + [931] = {.lex_state = 278}, + [932] = {.lex_state = 332}, + [933] = {.lex_state = 327}, + [934] = {.lex_state = 284}, + [935] = {.lex_state = 583}, + [936] = {.lex_state = 286}, + [937] = {.lex_state = 332}, + [938] = {.lex_state = 584}, + [939] = {.lex_state = 323}, + [940] = {.lex_state = 585}, + [941] = {.lex_state = 278}, + [942] = {.lex_state = 586}, + [943] = {.lex_state = 327}, + [944] = {.lex_state = 276}, + [945] = {.lex_state = 587}, + [946] = {.lex_state = 327}, + [947] = {.lex_state = 276}, + [948] = {.lex_state = 588}, + [949] = {.lex_state = 305}, + [950] = {.lex_state = 300}, [951] = {.lex_state = 305}, - [952] = {.lex_state = 305}, - [953] = {.lex_state = 305}, + [952] = {.lex_state = 316}, + [953] = {.lex_state = 578}, [954] = {.lex_state = 305}, [955] = {.lex_state = 305}, [956] = {.lex_state = 305}, [957] = {.lex_state = 305}, - [958] = {.lex_state = 309}, - [959] = {.lex_state = 304}, + [958] = {.lex_state = 305}, + [959] = {.lex_state = 305}, [960] = {.lex_state = 305}, - [961] = {.lex_state = 304}, - [962] = {.lex_state = 369}, - [963] = {.lex_state = 345}, - [964] = {.lex_state = 345}, - [965] = {.lex_state = 305}, - [966] = {.lex_state = 345}, - [967] = {.lex_state = 305}, - [968] = {.lex_state = 588}, - [969] = {.lex_state = 286}, - [970] = {.lex_state = 321}, - [971] = {.lex_state = 286}, - [972] = {.lex_state = 321}, + [961] = {.lex_state = 305}, + [962] = {.lex_state = 310}, + [963] = {.lex_state = 304}, + [964] = {.lex_state = 305}, + [965] = {.lex_state = 304}, + [966] = {.lex_state = 370}, + [967] = {.lex_state = 346}, + [968] = {.lex_state = 346}, + [969] = {.lex_state = 305}, + [970] = {.lex_state = 346}, + [971] = {.lex_state = 305}, + [972] = {.lex_state = 589}, [973] = {.lex_state = 286}, - [974] = {.lex_state = 310}, - [975] = {.lex_state = 293}, - [976] = {.lex_state = 310}, - [977] = {.lex_state = 569}, - [978] = {.lex_state = 589}, - [979] = {.lex_state = 568}, - [980] = {.lex_state = 569}, - [981] = {.lex_state = 305}, - [982] = {.lex_state = 589}, - [983] = {.lex_state = 590}, - [984] = {.lex_state = 311}, - [985] = {.lex_state = 580}, - [986] = {.lex_state = 300}, + [974] = {.lex_state = 322}, + [975] = {.lex_state = 286}, + [976] = {.lex_state = 322}, + [977] = {.lex_state = 286}, + [978] = {.lex_state = 311}, + [979] = {.lex_state = 293}, + [980] = {.lex_state = 311}, + [981] = {.lex_state = 570}, + [982] = {.lex_state = 590}, + [983] = {.lex_state = 569}, + [984] = {.lex_state = 570}, + [985] = {.lex_state = 305}, + [986] = {.lex_state = 590}, [987] = {.lex_state = 591}, - [988] = {.lex_state = 567}, - [989] = {.lex_state = 304}, - [990] = {.lex_state = 304}, - [991] = {.lex_state = 304}, - [992] = {.lex_state = 304}, + [988] = {.lex_state = 312}, + [989] = {.lex_state = 581}, + [990] = {.lex_state = 300}, + [991] = {.lex_state = 592}, + [992] = {.lex_state = 568}, [993] = {.lex_state = 304}, - [994] = {.lex_state = 359}, - [995] = {.lex_state = 592}, - [996] = {.lex_state = 263}, - [997] = {.lex_state = 328}, - [998] = {.lex_state = 593}, - [999] = {.lex_state = 304}, - [1000] = {.lex_state = 304}, - [1001] = {.lex_state = 304}, - [1002] = {.lex_state = 304}, + [994] = {.lex_state = 304}, + [995] = {.lex_state = 304}, + [996] = {.lex_state = 304}, + [997] = {.lex_state = 304}, + [998] = {.lex_state = 360}, + [999] = {.lex_state = 593}, + [1000] = {.lex_state = 263}, + [1001] = {.lex_state = 329}, + [1002] = {.lex_state = 594}, [1003] = {.lex_state = 304}, [1004] = {.lex_state = 304}, [1005] = {.lex_state = 304}, [1006] = {.lex_state = 304}, - [1007] = {.lex_state = 593}, - [1008] = {.lex_state = 593}, - [1009] = {.lex_state = 593}, - [1010] = {.lex_state = 593}, - [1011] = {.lex_state = 593}, - [1012] = {.lex_state = 593}, - [1013] = {.lex_state = 593}, - [1014] = {.lex_state = 309}, - [1015] = {.lex_state = 304}, - [1016] = {.lex_state = 593}, - [1017] = {.lex_state = 592}, - [1018] = {.lex_state = 284}, - [1019] = {.lex_state = 594}, - [1020] = {.lex_state = 592}, - [1021] = {.lex_state = 300}, - [1022] = {.lex_state = 593}, - [1023] = {.lex_state = 315}, - [1024] = {.lex_state = 595}, - [1025] = {.lex_state = 593}, - [1026] = {.lex_state = 593}, - [1027] = {.lex_state = 593}, - [1028] = {.lex_state = 593}, - [1029] = {.lex_state = 593}, - [1030] = {.lex_state = 596}, - [1031] = {.lex_state = 315}, - [1032] = {.lex_state = 298}, - [1033] = {.lex_state = 349}, - [1034] = {.lex_state = 308}, - [1035] = {.lex_state = 580}, - [1036] = {.lex_state = 349}, - [1037] = {.lex_state = 308}, - [1038] = {.lex_state = 312}, - [1039] = {.lex_state = 349}, - [1040] = {.lex_state = 311}, - [1041] = {.lex_state = 345}, - [1042] = {.lex_state = 349}, - [1043] = {.lex_state = 311}, + [1007] = {.lex_state = 304}, + [1008] = {.lex_state = 304}, + [1009] = {.lex_state = 304}, + [1010] = {.lex_state = 304}, + [1011] = {.lex_state = 594}, + [1012] = {.lex_state = 594}, + [1013] = {.lex_state = 594}, + [1014] = {.lex_state = 594}, + [1015] = {.lex_state = 594}, + [1016] = {.lex_state = 594}, + [1017] = {.lex_state = 594}, + [1018] = {.lex_state = 310}, + [1019] = {.lex_state = 304}, + [1020] = {.lex_state = 594}, + [1021] = {.lex_state = 593}, + [1022] = {.lex_state = 284}, + [1023] = {.lex_state = 595}, + [1024] = {.lex_state = 593}, + [1025] = {.lex_state = 300}, + [1026] = {.lex_state = 594}, + [1027] = {.lex_state = 316}, + [1028] = {.lex_state = 596}, + [1029] = {.lex_state = 594}, + [1030] = {.lex_state = 594}, + [1031] = {.lex_state = 594}, + [1032] = {.lex_state = 594}, + [1033] = {.lex_state = 594}, + [1034] = {.lex_state = 597}, + [1035] = {.lex_state = 316}, + [1036] = {.lex_state = 298}, + [1037] = {.lex_state = 350}, + [1038] = {.lex_state = 309}, + [1039] = {.lex_state = 581}, + [1040] = {.lex_state = 350}, + [1041] = {.lex_state = 309}, + [1042] = {.lex_state = 313}, + [1043] = {.lex_state = 350}, [1044] = {.lex_state = 312}, - [1045] = {.lex_state = 345}, - [1046] = {.lex_state = 345}, - [1047] = {.lex_state = 591}, - [1048] = {.lex_state = 345}, - [1049] = {.lex_state = 305}, - [1050] = {.lex_state = 578}, - [1051] = {.lex_state = 300}, - [1052] = {.lex_state = 312}, - [1053] = {.lex_state = 597}, - [1054] = {.lex_state = 304}, - [1055] = {.lex_state = 304}, - [1056] = {.lex_state = 304}, - [1057] = {.lex_state = 304}, + [1045] = {.lex_state = 346}, + [1046] = {.lex_state = 350}, + [1047] = {.lex_state = 312}, + [1048] = {.lex_state = 313}, + [1049] = {.lex_state = 346}, + [1050] = {.lex_state = 346}, + [1051] = {.lex_state = 592}, + [1052] = {.lex_state = 346}, + [1053] = {.lex_state = 305}, + [1054] = {.lex_state = 579}, + [1055] = {.lex_state = 300}, + [1056] = {.lex_state = 313}, + [1057] = {.lex_state = 598}, [1058] = {.lex_state = 304}, [1059] = {.lex_state = 304}, - [1060] = {.lex_state = 598}, - [1061] = {.lex_state = 582}, - [1062] = {.lex_state = 289}, - [1063] = {.lex_state = 312}, + [1060] = {.lex_state = 304}, + [1061] = {.lex_state = 304}, + [1062] = {.lex_state = 304}, + [1063] = {.lex_state = 304}, [1064] = {.lex_state = 599}, - [1065] = {.lex_state = 304}, - [1066] = {.lex_state = 304}, - [1067] = {.lex_state = 304}, - [1068] = {.lex_state = 304}, + [1065] = {.lex_state = 583}, + [1066] = {.lex_state = 289}, + [1067] = {.lex_state = 313}, + [1068] = {.lex_state = 600}, [1069] = {.lex_state = 304}, [1070] = {.lex_state = 304}, [1071] = {.lex_state = 304}, [1072] = {.lex_state = 304}, - [1073] = {.lex_state = 300}, - [1074] = {.lex_state = 599}, - [1075] = {.lex_state = 599}, - [1076] = {.lex_state = 315}, - [1077] = {.lex_state = 298}, - [1078] = {.lex_state = 599}, - [1079] = {.lex_state = 599}, - [1080] = {.lex_state = 599}, - [1081] = {.lex_state = 599}, - [1082] = {.lex_state = 599}, - [1083] = {.lex_state = 599}, - [1084] = {.lex_state = 599}, - [1085] = {.lex_state = 309}, - [1086] = {.lex_state = 304}, - [1087] = {.lex_state = 599}, - [1088] = {.lex_state = 300}, - [1089] = {.lex_state = 599}, - [1090] = {.lex_state = 315}, + [1073] = {.lex_state = 304}, + [1074] = {.lex_state = 304}, + [1075] = {.lex_state = 304}, + [1076] = {.lex_state = 304}, + [1077] = {.lex_state = 300}, + [1078] = {.lex_state = 600}, + [1079] = {.lex_state = 600}, + [1080] = {.lex_state = 316}, + [1081] = {.lex_state = 298}, + [1082] = {.lex_state = 600}, + [1083] = {.lex_state = 600}, + [1084] = {.lex_state = 600}, + [1085] = {.lex_state = 600}, + [1086] = {.lex_state = 600}, + [1087] = {.lex_state = 600}, + [1088] = {.lex_state = 600}, + [1089] = {.lex_state = 310}, + [1090] = {.lex_state = 304}, [1091] = {.lex_state = 600}, - [1092] = {.lex_state = 599}, - [1093] = {.lex_state = 599}, - [1094] = {.lex_state = 599}, + [1092] = {.lex_state = 300}, + [1093] = {.lex_state = 600}, + [1094] = {.lex_state = 316}, [1095] = {.lex_state = 601}, - [1096] = {.lex_state = 300}, - [1097] = {.lex_state = 304}, - [1098] = {.lex_state = 323}, - [1099] = {.lex_state = 312}, - [1100] = {.lex_state = 322}, - [1101] = {.lex_state = 589}, - [1102] = {.lex_state = 312}, - [1103] = {.lex_state = 602}, - [1104] = {.lex_state = 590}, - [1105] = {.lex_state = 605}, - [1106] = {.lex_state = 279}, - [1107] = {.lex_state = 322}, - [1108] = {.lex_state = 580}, - [1109] = {.lex_state = 304}, - [1110] = {.lex_state = 578}, - [1111] = {.lex_state = 345}, - [1112] = {.lex_state = 311}, - [1113] = {.lex_state = 322}, - [1114] = {.lex_state = 606}, - [1115] = {.lex_state = 320}, - [1116] = {.lex_state = 322}, - [1117] = {.lex_state = 606}, + [1096] = {.lex_state = 600}, + [1097] = {.lex_state = 600}, + [1098] = {.lex_state = 600}, + [1099] = {.lex_state = 602}, + [1100] = {.lex_state = 300}, + [1101] = {.lex_state = 304}, + [1102] = {.lex_state = 324}, + [1103] = {.lex_state = 313}, + [1104] = {.lex_state = 323}, + [1105] = {.lex_state = 590}, + [1106] = {.lex_state = 313}, + [1107] = {.lex_state = 603}, + [1108] = {.lex_state = 591}, + [1109] = {.lex_state = 606}, + [1110] = {.lex_state = 279}, + [1111] = {.lex_state = 323}, + [1112] = {.lex_state = 581}, + [1113] = {.lex_state = 304}, + [1114] = {.lex_state = 579}, + [1115] = {.lex_state = 346}, + [1116] = {.lex_state = 312}, + [1117] = {.lex_state = 323}, + [1118] = {.lex_state = 607}, + [1119] = {.lex_state = 321}, + [1120] = {.lex_state = 323}, + [1121] = {.lex_state = 607}, }; static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { [sym_translation_unit] = STATE(15), - [sym__top_level_item] = STATE(797), + [sym__top_level_item] = STATE(801), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), [sym_preproc_def] = STATE(18), [sym_preproc_function_def] = STATE(18), - [sym_preproc_params] = STATE(747), + [sym_preproc_params] = STATE(751), [sym_preproc_call] = STATE(18), [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(798), - [sym_function_definition] = STATE(799), - [sym_declaration] = STATE(800), - [sym__declaration_specifiers] = STATE(801), + [sym_preproc_else] = STATE(802), + [sym_function_definition] = STATE(803), + [sym_declaration] = STATE(804), + [sym__declaration_specifiers] = STATE(805), [sym_linkage_specification] = STATE(17), - [sym_declaration_list] = STATE(726), - [sym__declarator] = STATE(802), - [sym__abstract_declarator] = STATE(803), + [sym_declaration_list] = STATE(730), + [sym__declarator] = STATE(806), + [sym__abstract_declarator] = STATE(807), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym_init_declarator] = STATE(804), - [sym_compound_statement] = STATE(805), - [sym_storage_class_specifier] = STATE(776), - [sym_type_qualifier] = STATE(806), - [sym__type_specifier] = STATE(807), + [sym_abstract_array_declarator] = STATE(212), + [sym_init_declarator] = STATE(808), + [sym_compound_statement] = STATE(809), + [sym_storage_class_specifier] = STATE(780), + [sym_type_qualifier] = STATE(810), + [sym__type_specifier] = STATE(811), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), - [sym__enum_specifier_contents] = STATE(808), + [sym__enum_specifier_contents] = STATE(812), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(809), - [sym_enumerator] = STATE(810), - [sym_parameter_type_list] = STATE(811), - [sym_parameter_declaration] = STATE(812), - [sym__statement] = STATE(813), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(814), - [sym_comma_expression] = STATE(815), + [sym_struct_declaration] = STATE(813), + [sym_enumerator] = STATE(814), + [sym_parameter_type_list] = STATE(815), + [sym_parameter_declaration] = STATE(816), + [sym__statement] = STATE(817), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(819), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -12835,24 +12910,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(816), - [sym_initializer_list] = STATE(817), - [sym__initializer_list_contents] = STATE(342), - [sym_designator] = STATE(818), - [sym__empty_declaration] = STATE(819), + [sym_type_name] = STATE(820), + [sym_initializer_list] = STATE(821), + [sym__initializer_list_contents] = STATE(346), + [sym_designator] = STATE(822), + [sym_concatenated_string] = STATE(53), + [sym__empty_declaration] = STATE(823), [sym_macro_type_specifier] = STATE(21), - [aux_sym_translation_unit_repeat1] = STATE(820), - [aux_sym_preproc_params_repeat1] = STATE(755), - [aux_sym_declaration_repeat1] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(824), + [aux_sym_preproc_params_repeat1] = STATE(759), + [aux_sym_declaration_repeat1] = STATE(825), [aux_sym__declaration_specifiers_repeat1] = STATE(23), - [aux_sym_array_declarator_repeat1] = STATE(822), - [aux_sym_compound_statement_repeat1] = STATE(482), + [aux_sym_array_declarator_repeat1] = STATE(826), + [aux_sym_compound_statement_repeat1] = STATE(486), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym_struct_specifier_repeat1] = STATE(823), - [aux_sym_struct_declaration_repeat1] = STATE(824), - [aux_sym_parameter_type_list_repeat1] = STATE(228), - [aux_sym_for_statement_repeat1] = STATE(825), - [aux_sym__initializer_list_contents_repeat1] = STATE(826), + [aux_sym_struct_specifier_repeat1] = STATE(827), + [aux_sym_struct_declaration_repeat1] = STATE(828), + [aux_sym_parameter_type_list_repeat1] = STATE(232), + [aux_sym_for_statement_repeat1] = STATE(829), + [aux_sym__initializer_list_contents_repeat1] = STATE(830), + [aux_sym_concatenated_string_repeat1] = STATE(194), [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_POUNDinclude] = ACTIONS(3), [anon_sym_POUNDdefine] = ACTIONS(5), @@ -13227,7 +13304,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(121), }, [19] = { - [sym__type_specifier] = STATE(721), + [sym__type_specifier] = STATE(725), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), @@ -13421,7 +13498,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(121), }, [29] = { - [sym__declarator] = STATE(260), + [sym__declarator] = STATE(264), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), @@ -13485,7 +13562,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(121), }, [31] = { - [sym__declarator] = STATE(257), + [sym__declarator] = STATE(261), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), @@ -13506,7 +13583,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(121), }, [33] = { - [sym_compound_statement] = STATE(461), + [sym_compound_statement] = STATE(465), [aux_sym_declaration_repeat1] = STATE(37), [anon_sym_LPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(279), @@ -13523,11 +13600,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(121), }, [35] = { - [sym__declarator] = STATE(458), + [sym__declarator] = STATE(462), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym_init_declarator] = STATE(459), + [sym_init_declarator] = STATE(463), [anon_sym_LPAREN] = ACTIONS(220), [anon_sym_STAR] = ACTIONS(289), [sym_identifier] = ACTIONS(226), @@ -13658,7 +13735,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(121), }, [40] = { - [sym__declarator] = STATE(257), + [sym__declarator] = STATE(261), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), @@ -13681,16 +13758,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(121), }, [43] = { - [sym__declaration_specifiers] = STATE(224), + [sym__declaration_specifiers] = STATE(228), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(225), + [sym__type_specifier] = STATE(229), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_parameter_type_list] = STATE(249), - [sym_parameter_declaration] = STATE(222), + [sym_parameter_type_list] = STATE(253), + [sym_parameter_declaration] = STATE(226), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), @@ -13715,8 +13792,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(121), }, [44] = { - [sym_type_qualifier] = STATE(195), - [sym__expression] = STATE(239), + [sym_type_qualifier] = STATE(199), + [sym__expression] = STATE(243), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -13733,7 +13810,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [aux_sym_array_declarator_repeat1] = STATE(240), + [sym_concatenated_string] = STATE(53), + [aux_sym_array_declarator_repeat1] = STATE(244), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_static] = ACTIONS(317), @@ -13751,12 +13829,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [45] = { - [sym__expression] = STATE(55), + [sym__expression] = STATE(56), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -13773,33 +13851,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(56), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_initializer_list] = STATE(57), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [46] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -13816,12 +13895,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(456), + [sym_type_name] = STATE(460), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -13831,22 +13911,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, [47] = { - [sym__expression] = STATE(340), + [sym__expression] = STATE(344), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -13863,32 +13943,33 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(341), - [sym__initializer_list_contents] = STATE(342), - [sym_designator] = STATE(343), - [aux_sym__initializer_list_contents_repeat1] = STATE(344), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), - [anon_sym_DOT] = ACTIONS(385), + [sym_initializer_list] = STATE(345), + [sym__initializer_list_contents] = STATE(346), + [sym_designator] = STATE(347), + [sym_concatenated_string] = STATE(53), + [aux_sym__initializer_list_contents_repeat1] = STATE(348), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [48] = { - [sym__expression] = STATE(393), + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -13905,24 +13986,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [49] = { - [sym__expression] = STATE(392), + [sym__expression] = STATE(396), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -13939,24 +14021,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [50] = { - [sym__expression] = STATE(391), + [sym__expression] = STATE(395), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -13973,24 +14056,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [51] = { - [sym__expression] = STATE(390), + [sym__expression] = STATE(394), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14007,24 +14091,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [52] = { - [sym__expression] = STATE(453), + [sym__expression] = STATE(457), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14041,160 +14126,208 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [53] = { - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_RBRACK] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_COLON] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DASH_GT] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DASH_GT] = ACTIONS(391), [sym_comment] = ACTIONS(121), }, [54] = { - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [aux_sym_concatenated_string_repeat1] = STATE(194), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DASH_GT] = ACTIONS(391), + [sym_string_literal] = ACTIONS(395), [sym_comment] = ACTIONS(121), }, [55] = { [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, [56] = { - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [57] = { - [sym__expression] = STATE(159), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(403), + [sym_comment] = ACTIONS(121), + }, + [58] = { + [sym__expression] = STATE(160), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14211,25 +14344,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [58] = { - [sym__expression] = STATE(74), + [59] = { + [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14246,24 +14380,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [59] = { - [sym__expression] = STATE(125), + [60] = { + [sym__expression] = STATE(126), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14280,6 +14415,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -14292,12 +14428,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [60] = { - [sym__expression] = STATE(84), + [61] = { + [sym__expression] = STATE(85), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14314,24 +14450,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [61] = { - [sym__expression] = STATE(91), + [62] = { + [sym__expression] = STATE(92), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14348,24 +14485,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [62] = { - [sym__expression] = STATE(83), + [63] = { + [sym__expression] = STATE(84), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14382,24 +14520,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [63] = { - [sym__expression] = STATE(82), + [64] = { + [sym__expression] = STATE(83), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14416,24 +14555,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [64] = { - [sym__expression] = STATE(81), + [65] = { + [sym__expression] = STATE(82), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14450,24 +14590,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [65] = { - [sym__expression] = STATE(80), + [66] = { + [sym__expression] = STATE(81), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14484,24 +14625,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [66] = { - [sym__expression] = STATE(79), + [67] = { + [sym__expression] = STATE(80), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14518,24 +14660,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [67] = { - [sym__expression] = STATE(78), + [68] = { + [sym__expression] = STATE(79), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14552,24 +14695,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), - }, - [68] = { - [sym__expression] = STATE(77), + }, + [69] = { + [sym__expression] = STATE(78), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14586,24 +14730,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [69] = { - [sym__expression] = STATE(76), + [70] = { + [sym__expression] = STATE(77), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14620,24 +14765,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [70] = { - [sym__expression] = STATE(75), + [71] = { + [sym__expression] = STATE(76), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -14654,124 +14800,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [71] = { - [anon_sym_LPAREN] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(451), - [anon_sym_RPAREN] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(451), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_RBRACK] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_COLON] = ACTIONS(451), - [anon_sym_QMARK] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_DASH_GT] = ACTIONS(451), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [72] = { - [sym_identifier] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(455), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_SEMI] = ACTIONS(455), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_RBRACK] = ACTIONS(455), + [anon_sym_EQ] = ACTIONS(457), + [anon_sym_COLON] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(455), + [anon_sym_SLASH_EQ] = ACTIONS(455), + [anon_sym_PERCENT_EQ] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(455), + [anon_sym_DASH_EQ] = ACTIONS(455), + [anon_sym_LT_LT_EQ] = ACTIONS(455), + [anon_sym_GT_GT_EQ] = ACTIONS(455), + [anon_sym_AMP_EQ] = ACTIONS(455), + [anon_sym_CARET_EQ] = ACTIONS(455), + [anon_sym_PIPE_EQ] = ACTIONS(455), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_PIPE_PIPE] = ACTIONS(455), + [anon_sym_AMP_AMP] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(455), + [anon_sym_GT_EQ] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(457), + [anon_sym_PERCENT] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(455), + [anon_sym_DOT] = ACTIONS(455), + [anon_sym_DASH_GT] = ACTIONS(455), [sym_comment] = ACTIONS(121), }, [73] = { - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_COMMA] = ACTIONS(457), - [anon_sym_RPAREN] = ACTIONS(457), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(457), - [anon_sym_EQ] = ACTIONS(459), - [anon_sym_COLON] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_STAR_EQ] = ACTIONS(457), - [anon_sym_SLASH_EQ] = ACTIONS(457), - [anon_sym_PERCENT_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_LT_LT_EQ] = ACTIONS(457), - [anon_sym_GT_GT_EQ] = ACTIONS(457), - [anon_sym_AMP_EQ] = ACTIONS(457), - [anon_sym_CARET_EQ] = ACTIONS(457), - [anon_sym_PIPE_EQ] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(457), - [anon_sym_DASH_GT] = ACTIONS(457), + [sym_identifier] = ACTIONS(459), [sym_comment] = ACTIONS(121), }, [74] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_COMMA] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(461), [anon_sym_RBRACE] = ACTIONS(461), [anon_sym_STAR] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_RBRACK] = ACTIONS(461), [anon_sym_EQ] = ACTIONS(463), [anon_sym_COLON] = ACTIONS(461), @@ -14803,59 +14905,63 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(463), [anon_sym_SLASH] = ACTIONS(463), [anon_sym_PERCENT] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_PLUS_PLUS] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(461), + [anon_sym_DASH_GT] = ACTIONS(461), [sym_comment] = ACTIONS(121), }, [75] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_CARET_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_EQ] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(465), + [anon_sym_STAR_EQ] = ACTIONS(465), + [anon_sym_SLASH_EQ] = ACTIONS(465), + [anon_sym_PERCENT_EQ] = ACTIONS(465), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_LT_LT_EQ] = ACTIONS(465), + [anon_sym_GT_GT_EQ] = ACTIONS(465), + [anon_sym_AMP_EQ] = ACTIONS(465), + [anon_sym_CARET_EQ] = ACTIONS(465), + [anon_sym_PIPE_EQ] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [anon_sym_PIPE_PIPE] = ACTIONS(465), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_LT_LT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(467), + [anon_sym_PERCENT] = ACTIONS(467), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [76] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(465), [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(467), [anon_sym_QMARK] = ACTIONS(465), [anon_sym_STAR_EQ] = ACTIONS(465), @@ -14881,22 +14987,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(465), [anon_sym_LT_LT] = ACTIONS(467), [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [77] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(469), [anon_sym_SEMI] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(471), [anon_sym_QMARK] = ACTIONS(469), [anon_sym_STAR_EQ] = ACTIONS(469), @@ -14920,24 +15026,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(471), [anon_sym_LT_EQ] = ACTIONS(469), [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [78] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(473), [anon_sym_SEMI] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(475), [anon_sym_QMARK] = ACTIONS(473), [anon_sym_STAR_EQ] = ACTIONS(473), @@ -14957,28 +15063,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(475), [anon_sym_EQ_EQ] = ACTIONS(473), [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [79] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(477), [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(479), [anon_sym_QMARK] = ACTIONS(477), [anon_sym_STAR_EQ] = ACTIONS(477), @@ -14991,76 +15097,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(477), [anon_sym_CARET_EQ] = ACTIONS(477), [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(477), [anon_sym_AMP_AMP] = ACTIONS(477), [anon_sym_PIPE] = ACTIONS(479), [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [80] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [81] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(481), [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -15073,35 +15138,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(415), [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [82] = { - [anon_sym_LPAREN] = ACTIONS(397), + [81] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(481), [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -15114,120 +15179,202 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(415), [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [83] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [82] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [84] = { - [anon_sym_LPAREN] = ACTIONS(397), + [83] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(485), [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [84] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [85] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [86] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15244,12 +15391,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(450), + [sym_type_name] = STATE(454), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -15259,22 +15407,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [86] = { - [sym__expression] = STATE(393), + [87] = { + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15291,24 +15439,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [87] = { - [sym__expression] = STATE(392), + [88] = { + [sym__expression] = STATE(396), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15325,24 +15474,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [88] = { - [sym__expression] = STATE(391), + [89] = { + [sym__expression] = STATE(395), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15359,24 +15509,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [89] = { - [sym__expression] = STATE(390), + [90] = { + [sym__expression] = STATE(394), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15393,24 +15544,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [90] = { - [sym__expression] = STATE(447), + [91] = { + [sym__expression] = STATE(451), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15427,64 +15579,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [91] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [92] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [92] = { - [sym__expression] = STATE(74), + [93] = { + [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15501,24 +15654,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [93] = { - [sym__expression] = STATE(114), + [94] = { + [sym__expression] = STATE(115), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15535,24 +15689,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [94] = { - [sym__expression] = STATE(118), + [95] = { + [sym__expression] = STATE(119), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15569,24 +15724,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [95] = { - [sym__expression] = STATE(115), + [96] = { + [sym__expression] = STATE(116), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15603,24 +15759,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [96] = { - [sym__expression] = STATE(113), + [97] = { + [sym__expression] = STATE(114), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15637,24 +15794,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [97] = { - [sym__expression] = STATE(112), + [98] = { + [sym__expression] = STATE(113), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15671,24 +15829,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [98] = { - [sym__expression] = STATE(111), + [99] = { + [sym__expression] = STATE(112), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15705,24 +15864,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [99] = { - [sym__expression] = STATE(110), + [100] = { + [sym__expression] = STATE(111), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15739,24 +15899,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [100] = { - [sym__expression] = STATE(109), + [101] = { + [sym__expression] = STATE(110), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15773,24 +15934,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [101] = { - [sym__expression] = STATE(108), + [102] = { + [sym__expression] = STATE(109), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15807,24 +15969,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [102] = { - [sym__expression] = STATE(107), + [103] = { + [sym__expression] = STATE(108), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15841,24 +16004,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [103] = { - [sym__expression] = STATE(106), + [104] = { + [sym__expression] = STATE(107), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15875,24 +16039,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [104] = { - [sym__expression] = STATE(105), + [105] = { + [sym__expression] = STATE(106), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -15909,66 +16074,27 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [105] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_COLON] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_CARET_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [106] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(467), [anon_sym_COLON] = ACTIONS(465), [anon_sym_QMARK] = ACTIONS(465), @@ -15995,20 +16121,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(465), [anon_sym_LT_LT] = ACTIONS(467), [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [107] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(471), [anon_sym_COLON] = ACTIONS(469), [anon_sym_QMARK] = ACTIONS(469), @@ -16033,22 +16159,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(471), [anon_sym_LT_EQ] = ACTIONS(469), [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [108] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(475), [anon_sym_COLON] = ACTIONS(473), [anon_sym_QMARK] = ACTIONS(473), @@ -16069,26 +16195,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(475), [anon_sym_EQ_EQ] = ACTIONS(473), [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [109] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(479), [anon_sym_COLON] = ACTIONS(477), [anon_sym_QMARK] = ACTIONS(477), @@ -16102,73 +16228,33 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(477), [anon_sym_CARET_EQ] = ACTIONS(477), [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(477), [anon_sym_AMP_AMP] = ACTIONS(477), [anon_sym_PIPE] = ACTIONS(479), [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [110] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_COLON] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [111] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_COLON] = ACTIONS(481), [anon_sym_QMARK] = ACTIONS(481), @@ -16182,33 +16268,33 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(503), [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [112] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), + [111] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_COLON] = ACTIONS(481), [anon_sym_QMARK] = ACTIONS(481), @@ -16222,151 +16308,231 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(503), [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [113] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_COLON] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [112] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_COLON] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [114] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), + [113] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), [anon_sym_COLON] = ACTIONS(485), [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [114] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [115] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [116] = { - [sym__expression] = STATE(117), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [117] = { + [sym__expression] = STATE(118), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16383,112 +16549,113 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [117] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [118] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [119] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [120] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16505,12 +16672,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(444), + [sym_type_name] = STATE(448), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -16520,22 +16688,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [120] = { - [sym__expression] = STATE(393), + [121] = { + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16552,6 +16720,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -16564,12 +16733,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [121] = { - [sym__expression] = STATE(392), + [122] = { + [sym__expression] = STATE(396), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16586,6 +16755,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -16598,12 +16768,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [122] = { - [sym__expression] = STATE(391), + [123] = { + [sym__expression] = STATE(395), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16620,6 +16790,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -16632,12 +16803,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [123] = { - [sym__expression] = STATE(390), + [124] = { + [sym__expression] = STATE(394), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16654,6 +16825,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -16666,12 +16838,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [124] = { - [sym__expression] = STATE(441), + [125] = { + [sym__expression] = STATE(445), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16688,7 +16860,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(523), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(321), @@ -16700,52 +16873,52 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [125] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [126] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(531), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [126] = { - [sym__expression] = STATE(74), + [127] = { + [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16762,6 +16935,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -16774,57 +16948,57 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [127] = { - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(555), - [anon_sym_RBRACK] = ACTIONS(555), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_COLON] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(557), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(557), - [anon_sym_DASH] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_DASH_GT] = ACTIONS(555), + [128] = { + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), [sym_comment] = ACTIONS(121), }, - [128] = { - [sym__expression] = STATE(148), + [129] = { + [sym__expression] = STATE(149), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16841,6 +17015,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -16853,12 +17028,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [129] = { - [sym__expression] = STATE(149), + [130] = { + [sym__expression] = STATE(150), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16875,24 +17050,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [130] = { - [sym__expression] = STATE(147), + [131] = { + [sym__expression] = STATE(148), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16909,6 +17085,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -16921,12 +17098,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [131] = { - [sym__expression] = STATE(146), + [132] = { + [sym__expression] = STATE(147), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16943,6 +17120,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -16955,12 +17133,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [132] = { - [sym__expression] = STATE(145), + [133] = { + [sym__expression] = STATE(146), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -16977,6 +17155,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -16989,12 +17168,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [133] = { - [sym__expression] = STATE(144), + [134] = { + [sym__expression] = STATE(145), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17011,6 +17190,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -17023,12 +17203,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [134] = { - [sym__expression] = STATE(143), + [135] = { + [sym__expression] = STATE(144), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17045,6 +17225,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -17057,12 +17238,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [135] = { - [sym__expression] = STATE(142), + [136] = { + [sym__expression] = STATE(143), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17079,6 +17260,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -17091,12 +17273,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [136] = { - [sym__expression] = STATE(141), + [137] = { + [sym__expression] = STATE(142), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17113,6 +17295,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -17125,12 +17308,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [137] = { - [sym__expression] = STATE(140), + [138] = { + [sym__expression] = STATE(141), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17147,6 +17330,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -17159,12 +17343,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [138] = { - [sym__expression] = STATE(139), + [139] = { + [sym__expression] = STATE(140), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17181,6 +17365,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -17193,54 +17378,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [139] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_CARET_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [140] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_RBRACK] = ACTIONS(465), [anon_sym_EQ] = ACTIONS(467), [anon_sym_QMARK] = ACTIONS(465), @@ -17267,20 +17412,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(465), [anon_sym_LT_LT] = ACTIONS(467), [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [141] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_RBRACK] = ACTIONS(469), [anon_sym_EQ] = ACTIONS(471), [anon_sym_QMARK] = ACTIONS(469), @@ -17305,22 +17450,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(471), [anon_sym_LT_EQ] = ACTIONS(469), [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [142] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_RBRACK] = ACTIONS(473), [anon_sym_EQ] = ACTIONS(475), [anon_sym_QMARK] = ACTIONS(473), @@ -17337,70 +17482,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(475), [anon_sym_PIPE_PIPE] = ACTIONS(473), [anon_sym_AMP_AMP] = ACTIONS(473), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(473), - [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [143] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(475), + [anon_sym_EQ_EQ] = ACTIONS(473), + [anon_sym_BANG_EQ] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [144] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), + [143] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_RBRACK] = ACTIONS(477), [anon_sym_EQ] = ACTIONS(479), [anon_sym_QMARK] = ACTIONS(477), @@ -17414,33 +17519,33 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(477), [anon_sym_CARET_EQ] = ACTIONS(477), [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(477), [anon_sym_AMP_AMP] = ACTIONS(477), [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [145] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), + [144] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_RBRACK] = ACTIONS(481), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), @@ -17454,33 +17559,33 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(539), [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [146] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), + [145] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_RBRACK] = ACTIONS(481), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), @@ -17494,151 +17599,231 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(539), [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [147] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [146] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [148] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), + [147] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_RBRACK] = ACTIONS(485), - [anon_sym_EQ] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(487), [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [148] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [149] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(489), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [150] = { - [sym__expression] = STATE(151), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [151] = { + [sym__expression] = STATE(152), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17655,6 +17840,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -17667,59 +17853,59 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [151] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(521), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [152] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [152] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [153] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17736,12 +17922,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(438), + [sym_type_name] = STATE(442), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -17751,101 +17938,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), - [sym_comment] = ACTIONS(121), - }, - [153] = { - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(561), - [anon_sym_SLASH_EQ] = ACTIONS(561), - [anon_sym_PERCENT_EQ] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(561), - [anon_sym_DASH_EQ] = ACTIONS(561), - [anon_sym_LT_LT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_EQ] = ACTIONS(561), - [anon_sym_AMP_EQ] = ACTIONS(561), - [anon_sym_CARET_EQ] = ACTIONS(561), - [anon_sym_PIPE_EQ] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_DASH_GT] = ACTIONS(561), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, [154] = { - [sym__expression] = STATE(393), - [sym_conditional_expression] = STATE(53), - [sym_assignment_expression] = STATE(53), - [sym_pointer_expression] = STATE(53), - [sym_logical_expression] = STATE(53), - [sym_bitwise_expression] = STATE(53), - [sym_equality_expression] = STATE(53), - [sym_relational_expression] = STATE(53), - [sym_shift_expression] = STATE(53), - [sym_math_expression] = STATE(53), - [sym_cast_expression] = STATE(53), - [sym_sizeof_expression] = STATE(53), - [sym_subscript_expression] = STATE(53), - [sym_call_expression] = STATE(53), - [sym_field_expression] = STATE(53), - [sym_compound_literal_expression] = STATE(53), - [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(565), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_STAR_EQ] = ACTIONS(565), + [anon_sym_SLASH_EQ] = ACTIONS(565), + [anon_sym_PERCENT_EQ] = ACTIONS(565), + [anon_sym_PLUS_EQ] = ACTIONS(565), + [anon_sym_DASH_EQ] = ACTIONS(565), + [anon_sym_LT_LT_EQ] = ACTIONS(565), + [anon_sym_GT_GT_EQ] = ACTIONS(565), + [anon_sym_AMP_EQ] = ACTIONS(565), + [anon_sym_CARET_EQ] = ACTIONS(565), + [anon_sym_PIPE_EQ] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_DASH_GT] = ACTIONS(565), [sym_comment] = ACTIONS(121), }, [155] = { - [sym__expression] = STATE(392), + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17862,24 +18015,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [156] = { - [sym__expression] = STATE(391), + [sym__expression] = STATE(396), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17896,24 +18050,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [157] = { - [sym__expression] = STATE(390), + [sym__expression] = STATE(395), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17930,24 +18085,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [158] = { - [sym__expression] = STATE(193), + [sym__expression] = STATE(394), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -17964,66 +18120,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [159] = { - [aux_sym_for_statement_repeat1] = STATE(174), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [160] = { - [sym__expression] = STATE(191), + [sym__expression] = STATE(197), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18040,69 +18155,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [161] = { - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(599), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_STAR_EQ] = ACTIONS(599), - [anon_sym_SLASH_EQ] = ACTIONS(599), - [anon_sym_PERCENT_EQ] = ACTIONS(599), - [anon_sym_PLUS_EQ] = ACTIONS(599), - [anon_sym_DASH_EQ] = ACTIONS(599), - [anon_sym_LT_LT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_EQ] = ACTIONS(599), - [anon_sym_AMP_EQ] = ACTIONS(599), - [anon_sym_CARET_EQ] = ACTIONS(599), - [anon_sym_PIPE_EQ] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), + [160] = { + [aux_sym_for_statement_repeat1] = STATE(175), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), [anon_sym_PLUS] = ACTIONS(601), [anon_sym_DASH] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_DASH_GT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [162] = { - [sym__expression] = STATE(74), + [161] = { + [sym__expression] = STATE(192), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18119,24 +18232,70 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), + [sym_comment] = ACTIONS(121), + }, + [162] = { + [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_DASH_GT] = ACTIONS(603), [sym_comment] = ACTIONS(121), }, [163] = { - [sym__expression] = STATE(187), + [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18153,20 +18312,21 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [164] = { @@ -18187,24 +18347,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [165] = { - [sym__expression] = STATE(186), + [sym__expression] = STATE(189), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18221,24 +18382,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [166] = { - [sym__expression] = STATE(185), + [sym__expression] = STATE(187), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18255,24 +18417,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [167] = { - [sym__expression] = STATE(184), + [sym__expression] = STATE(186), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18289,24 +18452,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [168] = { - [sym__expression] = STATE(183), + [sym__expression] = STATE(185), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18323,24 +18487,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [169] = { - [sym__expression] = STATE(182), + [sym__expression] = STATE(184), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18357,24 +18522,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [170] = { - [sym__expression] = STATE(181), + [sym__expression] = STATE(183), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18391,24 +18557,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [171] = { - [sym__expression] = STATE(180), + [sym__expression] = STATE(182), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18425,24 +18592,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [172] = { - [sym__expression] = STATE(179), + [sym__expression] = STATE(181), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18459,24 +18627,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [173] = { - [sym__expression] = STATE(178), + [sym__expression] = STATE(180), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18493,29 +18662,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [174] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(605), - [sym_comment] = ACTIONS(121), - }, - [175] = { - [sym__expression] = STATE(177), + [sym__expression] = STATE(179), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -18532,155 +18697,155 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [176] = { - [anon_sym_LPAREN] = ACTIONS(607), + [175] = { [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(609), - [anon_sym_GT_GT] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(609), - [anon_sym_DASH] = ACTIONS(609), - [anon_sym_SLASH] = ACTIONS(609), - [anon_sym_PERCENT] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(609), + [sym_comment] = ACTIONS(121), + }, + [176] = { + [sym__expression] = STATE(178), + [sym_conditional_expression] = STATE(53), + [sym_assignment_expression] = STATE(53), + [sym_pointer_expression] = STATE(53), + [sym_logical_expression] = STATE(53), + [sym_bitwise_expression] = STATE(53), + [sym_equality_expression] = STATE(53), + [sym_relational_expression] = STATE(53), + [sym_shift_expression] = STATE(53), + [sym_math_expression] = STATE(53), + [sym_cast_expression] = STATE(53), + [sym_sizeof_expression] = STATE(53), + [sym_subscript_expression] = STATE(53), + [sym_call_expression] = STATE(53), + [sym_field_expression] = STATE(53), + [sym_compound_literal_expression] = STATE(53), + [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [177] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(611), [anon_sym_COMMA] = ACTIONS(611), [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_RBRACK] = ACTIONS(611), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym_COLON] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_STAR_EQ] = ACTIONS(611), + [anon_sym_SLASH_EQ] = ACTIONS(611), + [anon_sym_PERCENT_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [anon_sym_DASH_EQ] = ACTIONS(611), + [anon_sym_LT_LT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_EQ] = ACTIONS(611), + [anon_sym_AMP_EQ] = ACTIONS(611), + [anon_sym_CARET_EQ] = ACTIONS(611), + [anon_sym_PIPE_EQ] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_DASH_GT] = ACTIONS(611), [sym_comment] = ACTIONS(121), }, [178] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_CARET_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [179] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(465), [anon_sym_RPAREN] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(467), [anon_sym_QMARK] = ACTIONS(465), [anon_sym_STAR_EQ] = ACTIONS(465), @@ -18706,22 +18871,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(465), [anon_sym_LT_LT] = ACTIONS(467), [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [180] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(469), [anon_sym_RPAREN] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(471), [anon_sym_QMARK] = ACTIONS(469), [anon_sym_STAR_EQ] = ACTIONS(469), @@ -18745,24 +18910,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(471), [anon_sym_LT_EQ] = ACTIONS(469), [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [181] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(473), [anon_sym_RPAREN] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(475), [anon_sym_QMARK] = ACTIONS(473), [anon_sym_STAR_EQ] = ACTIONS(473), @@ -18782,28 +18947,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(475), [anon_sym_EQ_EQ] = ACTIONS(473), [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [182] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(477), [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(479), [anon_sym_QMARK] = ACTIONS(477), [anon_sym_STAR_EQ] = ACTIONS(477), @@ -18816,76 +18981,76 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(477), [anon_sym_CARET_EQ] = ACTIONS(477), [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(477), [anon_sym_AMP_AMP] = ACTIONS(477), [anon_sym_PIPE] = ACTIONS(479), [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [183] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [184] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(481), [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -18898,35 +19063,117 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(583), [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [185] = { - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [186] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [187] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(481), [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -18939,153 +19186,112 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(483), [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [186] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [187] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [188] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [189] = { - [sym__expression] = STATE(190), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [190] = { + [sym__expression] = STATE(191), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -19102,113 +19308,252 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [190] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [191] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [192] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [193] = { + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_LT_LT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_EQ] = ACTIONS(621), + [anon_sym_AMP_EQ] = ACTIONS(621), + [anon_sym_CARET_EQ] = ACTIONS(621), + [anon_sym_PIPE_EQ] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_DASH_GT] = ACTIONS(621), + [sym_string_literal] = ACTIONS(623), + [sym_comment] = ACTIONS(121), + }, + [194] = { + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(625), + [anon_sym_STAR_EQ] = ACTIONS(625), + [anon_sym_SLASH_EQ] = ACTIONS(625), + [anon_sym_PERCENT_EQ] = ACTIONS(625), + [anon_sym_PLUS_EQ] = ACTIONS(625), + [anon_sym_DASH_EQ] = ACTIONS(625), + [anon_sym_LT_LT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_EQ] = ACTIONS(625), + [anon_sym_AMP_EQ] = ACTIONS(625), + [anon_sym_CARET_EQ] = ACTIONS(625), + [anon_sym_PIPE_EQ] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_DASH_GT] = ACTIONS(625), + [sym_string_literal] = ACTIONS(629), + [sym_comment] = ACTIONS(121), + }, + [195] = { + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_RBRACK] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_STAR_EQ] = ACTIONS(631), + [anon_sym_SLASH_EQ] = ACTIONS(631), + [anon_sym_PERCENT_EQ] = ACTIONS(631), + [anon_sym_PLUS_EQ] = ACTIONS(631), + [anon_sym_DASH_EQ] = ACTIONS(631), + [anon_sym_LT_LT_EQ] = ACTIONS(631), + [anon_sym_GT_GT_EQ] = ACTIONS(631), + [anon_sym_AMP_EQ] = ACTIONS(631), + [anon_sym_CARET_EQ] = ACTIONS(631), + [anon_sym_PIPE_EQ] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(633), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_LT_LT] = ACTIONS(633), + [anon_sym_GT_GT] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(631), + [anon_sym_PLUS_PLUS] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_DASH_GT] = ACTIONS(631), + [sym_string_literal] = ACTIONS(633), + [sym_comment] = ACTIONS(121), + }, + [196] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -19225,12 +19570,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(199), + [sym_type_name] = STATE(203), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -19240,199 +19586,199 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [193] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [197] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [194] = { - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [198] = { + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, - [195] = { - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_static] = ACTIONS(633), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_const] = ACTIONS(633), - [anon_sym_restrict] = ACTIONS(633), - [anon_sym_volatile] = ACTIONS(633), - [anon_sym_unsigned] = ACTIONS(633), - [anon_sym_long] = ACTIONS(633), - [anon_sym_short] = ACTIONS(633), - [anon_sym_enum] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(633), - [anon_sym_union] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(633), - [anon_sym_DASH_DASH] = ACTIONS(631), - [anon_sym_PLUS_PLUS] = ACTIONS(631), - [anon_sym_sizeof] = ACTIONS(633), - [sym_number_literal] = ACTIONS(633), - [sym_char_literal] = ACTIONS(633), - [sym_string_literal] = ACTIONS(633), - [sym_identifier] = ACTIONS(635), + [199] = { + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_static] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_const] = ACTIONS(651), + [anon_sym_restrict] = ACTIONS(651), + [anon_sym_volatile] = ACTIONS(651), + [anon_sym_unsigned] = ACTIONS(651), + [anon_sym_long] = ACTIONS(651), + [anon_sym_short] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(651), + [anon_sym_struct] = ACTIONS(651), + [anon_sym_union] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_sizeof] = ACTIONS(651), + [sym_number_literal] = ACTIONS(651), + [sym_char_literal] = ACTIONS(651), + [sym_string_literal] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), [sym_comment] = ACTIONS(121), }, - [196] = { - [sym__abstract_declarator] = STATE(437), - [sym_abstract_pointer_declarator] = STATE(208), - [sym_abstract_function_declarator] = STATE(208), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_LBRACK] = ACTIONS(643), + [200] = { + [sym__abstract_declarator] = STATE(441), + [sym_abstract_pointer_declarator] = STATE(212), + [sym_abstract_function_declarator] = STATE(212), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(661), [sym_comment] = ACTIONS(121), }, - [197] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [201] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [198] = { - [anon_sym_RPAREN] = ACTIONS(647), + [202] = { + [anon_sym_RPAREN] = ACTIONS(665), [sym_comment] = ACTIONS(121), }, - [199] = { - [anon_sym_RPAREN] = ACTIONS(649), + [203] = { + [anon_sym_RPAREN] = ACTIONS(667), [sym_comment] = ACTIONS(121), }, - [200] = { - [sym_type_qualifier] = STATE(202), - [sym__type_specifier] = STATE(203), + [204] = { + [sym_type_qualifier] = STATE(206), + [sym__type_specifier] = STATE(207), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), [sym_macro_type_specifier] = STATE(21), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -19445,7 +19791,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [201] = { + [205] = { [anon_sym_LPAREN] = ACTIONS(240), [anon_sym_RPAREN] = ACTIONS(240), [anon_sym_STAR] = ACTIONS(240), @@ -19453,72 +19799,72 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(242), [anon_sym_long] = ACTIONS(242), [anon_sym_short] = ACTIONS(242), - [sym_identifier] = ACTIONS(651), + [sym_identifier] = ACTIONS(669), [sym_comment] = ACTIONS(121), }, - [202] = { - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_RBRACK] = ACTIONS(653), - [anon_sym_const] = ACTIONS(655), - [anon_sym_restrict] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym_unsigned] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_struct] = ACTIONS(655), - [anon_sym_union] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(655), - [sym_number_literal] = ACTIONS(655), - [sym_char_literal] = ACTIONS(655), - [sym_string_literal] = ACTIONS(655), - [sym_identifier] = ACTIONS(657), + [206] = { + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(671), + [anon_sym_static] = ACTIONS(673), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_const] = ACTIONS(673), + [anon_sym_restrict] = ACTIONS(673), + [anon_sym_volatile] = ACTIONS(673), + [anon_sym_unsigned] = ACTIONS(673), + [anon_sym_long] = ACTIONS(673), + [anon_sym_short] = ACTIONS(673), + [anon_sym_enum] = ACTIONS(673), + [anon_sym_struct] = ACTIONS(673), + [anon_sym_union] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(671), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_sizeof] = ACTIONS(673), + [sym_number_literal] = ACTIONS(673), + [sym_char_literal] = ACTIONS(673), + [sym_string_literal] = ACTIONS(673), + [sym_identifier] = ACTIONS(675), [sym_comment] = ACTIONS(121), }, - [203] = { - [sym__abstract_declarator] = STATE(207), - [sym_abstract_pointer_declarator] = STATE(208), - [sym_abstract_function_declarator] = STATE(208), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_LBRACK] = ACTIONS(643), + [207] = { + [sym__abstract_declarator] = STATE(211), + [sym_abstract_pointer_declarator] = STATE(212), + [sym_abstract_function_declarator] = STATE(212), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(661), [sym_comment] = ACTIONS(121), }, - [204] = { - [sym__abstract_declarator] = STATE(261), - [sym_abstract_pointer_declarator] = STATE(208), - [sym_abstract_function_declarator] = STATE(208), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_LBRACK] = ACTIONS(643), + [208] = { + [sym__abstract_declarator] = STATE(265), + [sym_abstract_pointer_declarator] = STATE(212), + [sym_abstract_function_declarator] = STATE(212), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(661), [sym_comment] = ACTIONS(121), }, - [205] = { - [sym__abstract_declarator] = STATE(258), - [sym_abstract_pointer_declarator] = STATE(208), - [sym_abstract_function_declarator] = STATE(208), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_LBRACK] = ACTIONS(643), + [209] = { + [sym__abstract_declarator] = STATE(262), + [sym_abstract_pointer_declarator] = STATE(212), + [sym_abstract_function_declarator] = STATE(212), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(661), [sym_comment] = ACTIONS(121), }, - [206] = { - [sym_type_qualifier] = STATE(195), - [sym__expression] = STATE(253), + [210] = { + [sym_type_qualifier] = STATE(199), + [sym__expression] = STATE(257), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -19535,11 +19881,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [aux_sym_array_declarator_repeat1] = STATE(254), + [sym_concatenated_string] = STATE(53), + [aux_sym_array_declarator_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_static] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(665), + [anon_sym_static] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(683), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -19553,39 +19900,39 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [207] = { - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(669), - [anon_sym_LBRACK] = ACTIONS(671), + [211] = { + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), [sym_comment] = ACTIONS(121), }, - [208] = { - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_COMMA] = ACTIONS(673), - [anon_sym_RPAREN] = ACTIONS(673), - [anon_sym_LBRACK] = ACTIONS(673), + [212] = { + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_COMMA] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(691), [sym_comment] = ACTIONS(121), }, - [209] = { - [sym__declaration_specifiers] = STATE(224), + [213] = { + [sym__declaration_specifiers] = STATE(228), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(225), + [sym__type_specifier] = STATE(229), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_parameter_type_list] = STATE(226), - [sym_parameter_declaration] = STATE(222), + [sym_parameter_type_list] = STATE(230), + [sym_parameter_declaration] = STATE(226), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), [anon_sym_DOT_DOT_DOT] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(693), [anon_sym_extern] = ACTIONS(135), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), @@ -19604,9 +19951,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [210] = { - [sym_type_qualifier] = STATE(195), - [sym__expression] = STATE(213), + [214] = { + [sym_type_qualifier] = STATE(199), + [sym__expression] = STATE(217), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -19623,11 +19970,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [aux_sym_array_declarator_repeat1] = STATE(214), + [sym_concatenated_string] = STATE(53), + [aux_sym_array_declarator_repeat1] = STATE(218), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_static] = ACTIONS(677), - [anon_sym_RBRACK] = ACTIONS(679), + [anon_sym_static] = ACTIONS(695), + [anon_sym_RBRACK] = ACTIONS(697), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -19641,13 +19989,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [211] = { - [sym_type_qualifier] = STATE(195), - [sym__expression] = STATE(217), + [215] = { + [sym_type_qualifier] = STATE(199), + [sym__expression] = STATE(221), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -19664,10 +20012,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [aux_sym_array_declarator_repeat1] = STATE(221), + [sym_concatenated_string] = STATE(53), + [aux_sym_array_declarator_repeat1] = STATE(225), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(699), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -19681,60 +20030,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [212] = { - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), + [216] = { + [anon_sym_LPAREN] = ACTIONS(701), + [anon_sym_COMMA] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(701), [sym_comment] = ACTIONS(121), }, - [213] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(681), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [217] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [214] = { - [sym_type_qualifier] = STATE(202), - [sym__expression] = STATE(217), + [218] = { + [sym_type_qualifier] = STATE(206), + [sym__expression] = STATE(221), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -19751,10 +20100,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_static] = ACTIONS(685), - [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_static] = ACTIONS(703), + [anon_sym_RBRACK] = ACTIONS(699), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -19768,12 +20118,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [215] = { - [sym__expression] = STATE(219), + [219] = { + [sym__expression] = STATE(223), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -19790,6 +20140,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -19802,114 +20153,114 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [216] = { - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), + [220] = { + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(705), [sym_comment] = ACTIONS(121), }, - [217] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [221] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(707), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [218] = { - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_COMMA] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(691), + [222] = { + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(709), [sym_comment] = ACTIONS(121), }, - [219] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [223] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [220] = { - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_LBRACK] = ACTIONS(695), + [224] = { + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(713), [sym_comment] = ACTIONS(121), }, - [221] = { - [sym_type_qualifier] = STATE(202), - [sym__expression] = STATE(219), + [225] = { + [sym_type_qualifier] = STATE(206), + [sym__expression] = STATE(223), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -19926,9 +20277,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(707), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -19942,25 +20294,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [222] = { - [aux_sym_parameter_type_list_repeat1] = STATE(228), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(699), + [226] = { + [aux_sym_parameter_type_list_repeat1] = STATE(232), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(717), [sym_comment] = ACTIONS(121), }, - [223] = { - [anon_sym_LPAREN] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(701), + [227] = { + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(719), [sym_comment] = ACTIONS(121), }, - [224] = { - [sym__type_specifier] = STATE(264), + [228] = { + [sym__type_specifier] = STATE(268), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), @@ -19976,41 +20328,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [225] = { - [sym__declarator] = STATE(235), - [sym__abstract_declarator] = STATE(236), + [229] = { + [sym__declarator] = STATE(239), + [sym__abstract_declarator] = STATE(240), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(643), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(661), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [226] = { - [anon_sym_RPAREN] = ACTIONS(709), + [230] = { + [anon_sym_RPAREN] = ACTIONS(727), [sym_comment] = ACTIONS(121), }, - [227] = { - [sym__declaration_specifiers] = STATE(224), + [231] = { + [sym__declaration_specifiers] = STATE(228), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(225), + [sym__type_specifier] = STATE(229), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_parameter_declaration] = STATE(231), + [sym_parameter_declaration] = STATE(235), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(729), [anon_sym_extern] = ACTIONS(135), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), @@ -20029,25 +20381,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [228] = { - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(715), + [232] = { + [anon_sym_COMMA] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(733), [sym_comment] = ACTIONS(121), }, - [229] = { - [sym__declaration_specifiers] = STATE(224), + [233] = { + [sym__declaration_specifiers] = STATE(228), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(225), + [sym__type_specifier] = STATE(229), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_parameter_declaration] = STATE(230), + [sym_parameter_declaration] = STATE(234), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(735), [anon_sym_extern] = ACTIONS(135), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), @@ -20066,72 +20418,72 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [230] = { - [anon_sym_COMMA] = ACTIONS(719), - [anon_sym_RPAREN] = ACTIONS(719), + [234] = { + [anon_sym_COMMA] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), [sym_comment] = ACTIONS(121), }, - [231] = { - [anon_sym_COMMA] = ACTIONS(721), - [anon_sym_RPAREN] = ACTIONS(721), + [235] = { + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [sym_comment] = ACTIONS(121), }, - [232] = { - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(723), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(723), + [236] = { + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(741), [sym_comment] = ACTIONS(121), }, - [233] = { - [sym__declarator] = STATE(260), - [sym__abstract_declarator] = STATE(261), + [237] = { + [sym__declarator] = STATE(264), + [sym__abstract_declarator] = STATE(265), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(643), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(661), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [234] = { - [sym__declarator] = STATE(257), - [sym__abstract_declarator] = STATE(258), + [238] = { + [sym__declarator] = STATE(261), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(643), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(661), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [235] = { + [239] = { [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(285), [sym_comment] = ACTIONS(121), }, - [236] = { - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_LBRACK] = ACTIONS(671), + [240] = { + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(689), [sym_comment] = ACTIONS(121), }, - [237] = { - [sym_type_qualifier] = STATE(195), - [sym__expression] = STATE(243), + [241] = { + [sym_type_qualifier] = STATE(199), + [sym__expression] = STATE(247), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -20148,10 +20500,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [aux_sym_array_declarator_repeat1] = STATE(247), + [sym_concatenated_string] = STATE(53), + [aux_sym_array_declarator_repeat1] = STATE(251), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(729), + [anon_sym_RBRACK] = ACTIONS(747), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20165,64 +20518,64 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [238] = { - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), + [242] = { + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_COMMA] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_LBRACE] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(749), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(749), [sym_comment] = ACTIONS(121), }, - [239] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [243] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [240] = { - [sym_type_qualifier] = STATE(202), - [sym__expression] = STATE(243), + [244] = { + [sym_type_qualifier] = STATE(206), + [sym__expression] = STATE(247), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -20239,10 +20592,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_static] = ACTIONS(733), - [anon_sym_RBRACK] = ACTIONS(729), + [anon_sym_static] = ACTIONS(751), + [anon_sym_RBRACK] = ACTIONS(747), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20256,12 +20610,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [241] = { - [sym__expression] = STATE(245), + [245] = { + [sym__expression] = STATE(249), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -20278,6 +20632,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -20290,126 +20645,126 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [242] = { - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_COLON] = ACTIONS(735), + [246] = { + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(753), [sym_comment] = ACTIONS(121), }, - [243] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [247] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [244] = { - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(739), - [anon_sym_COLON] = ACTIONS(739), + [248] = { + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_COMMA] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), [sym_comment] = ACTIONS(121), }, - [245] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(741), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [249] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [246] = { - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), + [250] = { + [anon_sym_LPAREN] = ACTIONS(761), + [anon_sym_COMMA] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(761), [sym_comment] = ACTIONS(121), }, - [247] = { - [sym_type_qualifier] = STATE(202), - [sym__expression] = STATE(245), + [251] = { + [sym_type_qualifier] = STATE(206), + [sym__expression] = STATE(249), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -20426,9 +20781,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(737), + [anon_sym_RBRACK] = ACTIONS(755), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20442,39 +20798,39 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [248] = { - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_COMMA] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(745), - [anon_sym_COLON] = ACTIONS(745), + [252] = { + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_COLON] = ACTIONS(763), [sym_comment] = ACTIONS(121), }, - [249] = { - [anon_sym_RPAREN] = ACTIONS(747), + [253] = { + [anon_sym_RPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(121), }, - [250] = { - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(749), + [254] = { + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_COLON] = ACTIONS(767), [sym_comment] = ACTIONS(121), }, - [251] = { - [sym_type_qualifier] = STATE(195), - [sym__expression] = STATE(213), + [255] = { + [sym_type_qualifier] = STATE(199), + [sym__expression] = STATE(217), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -20491,10 +20847,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [aux_sym_array_declarator_repeat1] = STATE(256), + [sym_concatenated_string] = STATE(53), + [aux_sym_array_declarator_repeat1] = STATE(260), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(679), + [anon_sym_RBRACK] = ACTIONS(697), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20508,60 +20865,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [252] = { - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), + [256] = { + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), [sym_comment] = ACTIONS(121), }, - [253] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(679), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [257] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(697), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [254] = { - [sym_type_qualifier] = STATE(202), - [sym__expression] = STATE(213), + [258] = { + [sym_type_qualifier] = STATE(206), + [sym__expression] = STATE(217), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -20578,10 +20935,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_static] = ACTIONS(753), - [anon_sym_RBRACK] = ACTIONS(679), + [anon_sym_static] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(697), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20595,12 +20953,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [255] = { - [sym__expression] = STATE(217), + [259] = { + [sym__expression] = STATE(221), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -20617,6 +20975,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -20629,13 +20988,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [256] = { - [sym_type_qualifier] = STATE(202), - [sym__expression] = STATE(217), + [260] = { + [sym_type_qualifier] = STATE(206), + [sym__expression] = STATE(221), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -20652,9 +21011,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(699), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20668,116 +21028,116 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [257] = { + [261] = { [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_COLON] = ACTIONS(773), [sym_comment] = ACTIONS(121), }, - [258] = { - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(671), + [262] = { + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(689), [sym_comment] = ACTIONS(121), }, - [259] = { - [sym__declarator] = STATE(257), - [sym__abstract_declarator] = STATE(258), + [263] = { + [sym__declarator] = STATE(261), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(643), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(661), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [260] = { + [264] = { [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(777), [anon_sym_LBRACK] = ACTIONS(285), [sym_comment] = ACTIONS(121), }, - [261] = { - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(671), + [265] = { + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(689), [sym_comment] = ACTIONS(121), }, - [262] = { - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), + [266] = { + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_COMMA] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(781), [sym_comment] = ACTIONS(121), }, - [263] = { - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), + [267] = { + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_COMMA] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(783), [sym_comment] = ACTIONS(121), }, - [264] = { - [sym__declarator] = STATE(265), - [sym__abstract_declarator] = STATE(266), + [268] = { + [sym__declarator] = STATE(269), + [sym__abstract_declarator] = STATE(270), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(643), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(661), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [265] = { + [269] = { [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(285), [sym_comment] = ACTIONS(121), }, - [266] = { - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(671), + [270] = { + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(689), [sym_comment] = ACTIONS(121), }, - [267] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [271] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_type_name] = STATE(268), + [sym_type_name] = STATE(272), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20790,34 +21150,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [268] = { - [anon_sym_RPAREN] = ACTIONS(769), + [272] = { + [anon_sym_RPAREN] = ACTIONS(787), [sym_comment] = ACTIONS(121), }, - [269] = { - [anon_sym_LPAREN] = ACTIONS(771), - [anon_sym_COMMA] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(771), - [sym_identifier] = ACTIONS(773), + [273] = { + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_COLON] = ACTIONS(789), + [sym_identifier] = ACTIONS(791), [sym_comment] = ACTIONS(121), }, - [270] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [274] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(275), + [sym_struct_declaration] = STATE(279), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym_struct_specifier_repeat1] = STATE(412), - [anon_sym_RBRACE] = ACTIONS(775), + [aux_sym_struct_specifier_repeat1] = STATE(416), + [anon_sym_RBRACE] = ACTIONS(793), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20830,31 +21190,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [271] = { - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_COLON] = ACTIONS(777), - [sym_identifier] = ACTIONS(781), + [275] = { + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [sym_identifier] = ACTIONS(799), [sym_comment] = ACTIONS(121), }, - [272] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [276] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(275), + [sym_struct_declaration] = STATE(279), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym_struct_specifier_repeat1] = STATE(277), - [anon_sym_RBRACE] = ACTIONS(783), + [aux_sym_struct_specifier_repeat1] = STATE(281), + [anon_sym_RBRACE] = ACTIONS(801), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20867,46 +21227,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [273] = { - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_COLON] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), + [277] = { + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [sym_identifier] = ACTIONS(805), [sym_comment] = ACTIONS(121), }, - [274] = { - [sym__declarator] = STATE(408), + [278] = { + [sym__declarator] = STATE(412), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_COLON] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(811), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [275] = { - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_const] = ACTIONS(797), - [anon_sym_restrict] = ACTIONS(797), - [anon_sym_volatile] = ACTIONS(797), - [anon_sym_unsigned] = ACTIONS(797), - [anon_sym_long] = ACTIONS(797), - [anon_sym_short] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(797), - [anon_sym_struct] = ACTIONS(797), - [anon_sym_union] = ACTIONS(797), - [sym_identifier] = ACTIONS(799), + [279] = { + [anon_sym_RBRACE] = ACTIONS(813), + [anon_sym_const] = ACTIONS(815), + [anon_sym_restrict] = ACTIONS(815), + [anon_sym_volatile] = ACTIONS(815), + [anon_sym_unsigned] = ACTIONS(815), + [anon_sym_long] = ACTIONS(815), + [anon_sym_short] = ACTIONS(815), + [anon_sym_enum] = ACTIONS(815), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_union] = ACTIONS(815), + [sym_identifier] = ACTIONS(817), [sym_comment] = ACTIONS(121), }, - [276] = { - [sym_type_qualifier] = STATE(202), - [sym__type_specifier] = STATE(280), + [280] = { + [sym_type_qualifier] = STATE(206), + [sym__type_specifier] = STATE(284), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), @@ -20925,18 +21285,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [277] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [281] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(279), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(819), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -20949,69 +21309,69 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [278] = { - [anon_sym_LPAREN] = ACTIONS(803), - [anon_sym_COMMA] = ACTIONS(803), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(803), - [anon_sym_COLON] = ACTIONS(803), - [sym_identifier] = ACTIONS(805), + [282] = { + [anon_sym_LPAREN] = ACTIONS(821), + [anon_sym_COMMA] = ACTIONS(821), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(821), + [anon_sym_STAR] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_COLON] = ACTIONS(821), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, - [279] = { - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_const] = ACTIONS(809), - [anon_sym_restrict] = ACTIONS(809), - [anon_sym_volatile] = ACTIONS(809), - [anon_sym_unsigned] = ACTIONS(809), - [anon_sym_long] = ACTIONS(809), - [anon_sym_short] = ACTIONS(809), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_union] = ACTIONS(809), - [sym_identifier] = ACTIONS(811), + [283] = { + [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_const] = ACTIONS(827), + [anon_sym_restrict] = ACTIONS(827), + [anon_sym_volatile] = ACTIONS(827), + [anon_sym_unsigned] = ACTIONS(827), + [anon_sym_long] = ACTIONS(827), + [anon_sym_short] = ACTIONS(827), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_struct] = ACTIONS(827), + [anon_sym_union] = ACTIONS(827), + [sym_identifier] = ACTIONS(829), [sym_comment] = ACTIONS(121), }, - [280] = { - [sym__declarator] = STATE(284), + [284] = { + [sym__declarator] = STATE(288), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_COLON] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(833), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [281] = { - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_const] = ACTIONS(819), - [anon_sym_restrict] = ACTIONS(819), - [anon_sym_volatile] = ACTIONS(819), - [anon_sym_unsigned] = ACTIONS(819), - [anon_sym_long] = ACTIONS(819), - [anon_sym_short] = ACTIONS(819), - [anon_sym_enum] = ACTIONS(819), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_union] = ACTIONS(819), - [sym_identifier] = ACTIONS(821), + [285] = { + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_const] = ACTIONS(837), + [anon_sym_restrict] = ACTIONS(837), + [anon_sym_volatile] = ACTIONS(837), + [anon_sym_unsigned] = ACTIONS(837), + [anon_sym_long] = ACTIONS(837), + [anon_sym_short] = ACTIONS(837), + [anon_sym_enum] = ACTIONS(837), + [anon_sym_struct] = ACTIONS(837), + [anon_sym_union] = ACTIONS(837), + [sym_identifier] = ACTIONS(839), [sym_comment] = ACTIONS(121), }, - [282] = { - [sym__declarator] = STATE(257), + [286] = { + [sym__declarator] = STATE(261), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(809), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [283] = { - [sym__expression] = STATE(404), + [287] = { + [sym__expression] = STATE(408), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21028,57 +21388,58 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [284] = { - [aux_sym_struct_declaration_repeat1] = STATE(288), + [288] = { + [aux_sym_struct_declaration_repeat1] = STATE(292), [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(837), - [anon_sym_SEMI] = ACTIONS(839), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(857), [anon_sym_LBRACK] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(859), [sym_comment] = ACTIONS(121), }, - [285] = { - [sym__declarator] = STATE(403), + [289] = { + [sym__declarator] = STATE(407), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(809), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [286] = { - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_const] = ACTIONS(845), - [anon_sym_restrict] = ACTIONS(845), - [anon_sym_volatile] = ACTIONS(845), - [anon_sym_unsigned] = ACTIONS(845), - [anon_sym_long] = ACTIONS(845), - [anon_sym_short] = ACTIONS(845), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_struct] = ACTIONS(845), - [anon_sym_union] = ACTIONS(845), - [sym_identifier] = ACTIONS(847), + [290] = { + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_const] = ACTIONS(863), + [anon_sym_restrict] = ACTIONS(863), + [anon_sym_volatile] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [sym_identifier] = ACTIONS(865), [sym_comment] = ACTIONS(121), }, - [287] = { - [sym__expression] = STATE(401), + [291] = { + [sym__expression] = STATE(405), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21095,54 +21456,55 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [288] = { - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_COLON] = ACTIONS(853), + [292] = { + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_COLON] = ACTIONS(871), [sym_comment] = ACTIONS(121), }, - [289] = { - [sym__declarator] = STATE(400), + [293] = { + [sym__declarator] = STATE(404), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(809), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [290] = { - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_const] = ACTIONS(857), - [anon_sym_restrict] = ACTIONS(857), - [anon_sym_volatile] = ACTIONS(857), - [anon_sym_unsigned] = ACTIONS(857), - [anon_sym_long] = ACTIONS(857), - [anon_sym_short] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_struct] = ACTIONS(857), - [anon_sym_union] = ACTIONS(857), - [sym_identifier] = ACTIONS(859), + [294] = { + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_const] = ACTIONS(875), + [anon_sym_restrict] = ACTIONS(875), + [anon_sym_volatile] = ACTIONS(875), + [anon_sym_unsigned] = ACTIONS(875), + [anon_sym_long] = ACTIONS(875), + [anon_sym_short] = ACTIONS(875), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(875), + [anon_sym_union] = ACTIONS(875), + [sym_identifier] = ACTIONS(877), [sym_comment] = ACTIONS(121), }, - [291] = { - [sym__expression] = STATE(298), + [295] = { + [sym__expression] = STATE(302), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21159,31 +21521,32 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [292] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [296] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21200,12 +21563,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(398), + [sym_type_name] = STATE(402), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -21215,22 +21579,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [293] = { - [sym__expression] = STATE(393), + [297] = { + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21247,24 +21611,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [294] = { - [sym__expression] = STATE(392), + [298] = { + [sym__expression] = STATE(396), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21281,24 +21646,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [295] = { - [sym__expression] = STATE(391), + [299] = { + [sym__expression] = STATE(395), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21315,24 +21681,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [296] = { - [sym__expression] = STATE(390), + [300] = { + [sym__expression] = STATE(394), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21349,24 +21716,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [297] = { - [sym__expression] = STATE(326), + [301] = { + [sym__expression] = STATE(330), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21383,78 +21751,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [298] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [302] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [299] = { - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_const] = ACTIONS(895), - [anon_sym_restrict] = ACTIONS(895), - [anon_sym_volatile] = ACTIONS(895), - [anon_sym_unsigned] = ACTIONS(895), - [anon_sym_long] = ACTIONS(895), - [anon_sym_short] = ACTIONS(895), - [anon_sym_enum] = ACTIONS(895), - [anon_sym_struct] = ACTIONS(895), - [anon_sym_union] = ACTIONS(895), - [sym_identifier] = ACTIONS(897), + [303] = { + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_const] = ACTIONS(913), + [anon_sym_restrict] = ACTIONS(913), + [anon_sym_volatile] = ACTIONS(913), + [anon_sym_unsigned] = ACTIONS(913), + [anon_sym_long] = ACTIONS(913), + [anon_sym_short] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(913), + [anon_sym_struct] = ACTIONS(913), + [anon_sym_union] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, - [300] = { - [sym__expression] = STATE(74), + [304] = { + [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21471,24 +21840,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [301] = { - [sym__expression] = STATE(321), + [305] = { + [sym__expression] = STATE(325), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21505,24 +21875,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [302] = { - [sym__expression] = STATE(322), + [306] = { + [sym__expression] = STATE(326), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21539,24 +21910,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [303] = { - [sym__expression] = STATE(320), + [307] = { + [sym__expression] = STATE(324), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21573,24 +21945,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [304] = { - [sym__expression] = STATE(319), + [308] = { + [sym__expression] = STATE(323), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21607,24 +21980,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [305] = { - [sym__expression] = STATE(318), + [309] = { + [sym__expression] = STATE(322), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21641,24 +22015,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [306] = { - [sym__expression] = STATE(317), + [310] = { + [sym__expression] = STATE(321), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21675,24 +22050,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [307] = { - [sym__expression] = STATE(316), + [311] = { + [sym__expression] = STATE(320), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21709,24 +22085,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [308] = { - [sym__expression] = STATE(315), + [312] = { + [sym__expression] = STATE(319), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21743,24 +22120,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [309] = { - [sym__expression] = STATE(314), + [313] = { + [sym__expression] = STATE(318), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21777,24 +22155,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [310] = { - [sym__expression] = STATE(313), + [314] = { + [sym__expression] = STATE(317), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21811,24 +22190,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [311] = { - [sym__expression] = STATE(312), + [315] = { + [sym__expression] = STATE(316), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -21845,67 +22225,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [312] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_CARET_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [313] = { - [anon_sym_LPAREN] = ACTIONS(397), + [316] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(467), [anon_sym_QMARK] = ACTIONS(465), [anon_sym_STAR_EQ] = ACTIONS(465), @@ -21931,21 +22272,21 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(465), [anon_sym_LT_LT] = ACTIONS(467), [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [314] = { - [anon_sym_LPAREN] = ACTIONS(397), + [317] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_SEMI] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(471), [anon_sym_QMARK] = ACTIONS(469), [anon_sym_STAR_EQ] = ACTIONS(469), @@ -21969,23 +22310,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(471), [anon_sym_LT_EQ] = ACTIONS(469), [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [315] = { - [anon_sym_LPAREN] = ACTIONS(397), + [318] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_SEMI] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(475), [anon_sym_QMARK] = ACTIONS(473), [anon_sym_STAR_EQ] = ACTIONS(473), @@ -22005,27 +22346,27 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(475), [anon_sym_EQ_EQ] = ACTIONS(473), [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [316] = { - [anon_sym_LPAREN] = ACTIONS(397), + [319] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(479), [anon_sym_QMARK] = ACTIONS(477), [anon_sym_STAR_EQ] = ACTIONS(477), @@ -22038,74 +22379,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(477), [anon_sym_CARET_EQ] = ACTIONS(477), [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(477), [anon_sym_AMP_AMP] = ACTIONS(477), [anon_sym_PIPE] = ACTIONS(479), [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [317] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [318] = { - [anon_sym_LPAREN] = ACTIONS(397), + [320] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -22118,34 +22419,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(891), [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [319] = { - [anon_sym_LPAREN] = ACTIONS(397), + [321] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -22158,151 +22459,231 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(891), [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [320] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [322] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [321] = { - [anon_sym_LPAREN] = ACTIONS(397), + [323] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [322] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(899), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [324] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [323] = { - [sym__expression] = STATE(324), + [325] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [326] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(917), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [327] = { + [sym__expression] = STATE(328), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22319,71 +22700,72 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [324] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [328] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [325] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [329] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22400,12 +22782,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(327), + [sym_type_name] = STATE(331), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -22415,66 +22798,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [326] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [330] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [327] = { - [anon_sym_RPAREN] = ACTIONS(901), + [331] = { + [anon_sym_RPAREN] = ACTIONS(919), [sym_comment] = ACTIONS(121), }, - [328] = { - [sym__expression] = STATE(329), + [332] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22491,153 +22874,154 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [329] = { - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(911), - [anon_sym_STAR_EQ] = ACTIONS(911), - [anon_sym_SLASH_EQ] = ACTIONS(911), - [anon_sym_PERCENT_EQ] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(911), - [anon_sym_DASH_EQ] = ACTIONS(911), - [anon_sym_LT_LT_EQ] = ACTIONS(911), - [anon_sym_GT_GT_EQ] = ACTIONS(911), - [anon_sym_AMP_EQ] = ACTIONS(911), - [anon_sym_CARET_EQ] = ACTIONS(911), - [anon_sym_PIPE_EQ] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_CARET] = ACTIONS(913), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_LT_LT] = ACTIONS(913), - [anon_sym_GT_GT] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [333] = { + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_COLON] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(929), + [anon_sym_SLASH_EQ] = ACTIONS(929), + [anon_sym_PERCENT_EQ] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(929), + [anon_sym_LT_LT_EQ] = ACTIONS(929), + [anon_sym_GT_GT_EQ] = ACTIONS(929), + [anon_sym_AMP_EQ] = ACTIONS(929), + [anon_sym_CARET_EQ] = ACTIONS(929), + [anon_sym_PIPE_EQ] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [330] = { - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_COMMA] = ACTIONS(915), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(915), - [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(915), - [anon_sym_RBRACK] = ACTIONS(915), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(915), - [anon_sym_STAR_EQ] = ACTIONS(915), - [anon_sym_SLASH_EQ] = ACTIONS(915), - [anon_sym_PERCENT_EQ] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(915), - [anon_sym_DASH_EQ] = ACTIONS(915), - [anon_sym_LT_LT_EQ] = ACTIONS(915), - [anon_sym_GT_GT_EQ] = ACTIONS(915), - [anon_sym_AMP_EQ] = ACTIONS(915), - [anon_sym_CARET_EQ] = ACTIONS(915), - [anon_sym_PIPE_EQ] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(915), - [anon_sym_BANG_EQ] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(915), - [anon_sym_LT_LT] = ACTIONS(917), - [anon_sym_GT_GT] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_PERCENT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DASH_GT] = ACTIONS(915), + [334] = { + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_RBRACK] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_COLON] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(933), + [anon_sym_STAR_EQ] = ACTIONS(933), + [anon_sym_SLASH_EQ] = ACTIONS(933), + [anon_sym_PERCENT_EQ] = ACTIONS(933), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), + [anon_sym_LT_LT_EQ] = ACTIONS(933), + [anon_sym_GT_GT_EQ] = ACTIONS(933), + [anon_sym_AMP_EQ] = ACTIONS(933), + [anon_sym_CARET_EQ] = ACTIONS(933), + [anon_sym_PIPE_EQ] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DASH_GT] = ACTIONS(933), [sym_comment] = ACTIONS(121), }, - [331] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [335] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22654,12 +23038,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(396), + [sym_type_name] = STATE(400), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -22669,67 +23054,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [332] = { - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_RBRACK] = ACTIONS(919), - [anon_sym_EQ] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(919), - [anon_sym_STAR_EQ] = ACTIONS(919), - [anon_sym_SLASH_EQ] = ACTIONS(919), - [anon_sym_PERCENT_EQ] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(919), - [anon_sym_DASH_EQ] = ACTIONS(919), - [anon_sym_LT_LT_EQ] = ACTIONS(919), - [anon_sym_GT_GT_EQ] = ACTIONS(919), - [anon_sym_AMP_EQ] = ACTIONS(919), - [anon_sym_CARET_EQ] = ACTIONS(919), - [anon_sym_PIPE_EQ] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(921), - [anon_sym_CARET] = ACTIONS(921), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_LT_LT] = ACTIONS(921), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_PERCENT] = ACTIONS(921), - [anon_sym_DASH_DASH] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DASH_GT] = ACTIONS(919), + [336] = { + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DOT] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), [sym_comment] = ACTIONS(121), }, - [333] = { - [sym__expression] = STATE(393), + [337] = { + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22746,24 +23131,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [334] = { - [sym__expression] = STATE(394), + [338] = { + [sym__expression] = STATE(398), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22780,6 +23166,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -22792,12 +23179,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [335] = { - [sym__expression] = STATE(392), + [339] = { + [sym__expression] = STATE(396), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22814,24 +23201,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [336] = { - [sym__expression] = STATE(391), + [340] = { + [sym__expression] = STATE(395), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22848,24 +23236,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [337] = { - [sym__expression] = STATE(390), + [341] = { + [sym__expression] = STATE(394), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22882,24 +23271,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [338] = { - [sym__expression] = STATE(383), + [342] = { + [sym__expression] = STATE(387), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -22916,92 +23306,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [339] = { - [sym_identifier] = ACTIONS(925), + [343] = { + [sym_identifier] = ACTIONS(943), [sym_comment] = ACTIONS(121), }, - [340] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [344] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [341] = { - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), + [345] = { + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), [sym_comment] = ACTIONS(121), }, - [342] = { - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(959), + [346] = { + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(977), [sym_comment] = ACTIONS(121), }, - [343] = { - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), + [347] = { + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(979), [sym_comment] = ACTIONS(121), }, - [344] = { - [sym_designator] = STATE(346), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(385), + [348] = { + [sym_designator] = STATE(350), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(387), [sym_comment] = ACTIONS(121), }, - [345] = { - [sym__expression] = STATE(347), + [349] = { + [sym__expression] = STATE(351), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23018,78 +23409,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_initializer_list] = STATE(352), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [346] = { - [anon_sym_LBRACK] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(965), - [anon_sym_DOT] = ACTIONS(965), + [350] = { + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(983), [sym_comment] = ACTIONS(121), }, - [347] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [351] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [348] = { - [anon_sym_COMMA] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), + [352] = { + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), [sym_comment] = ACTIONS(121), }, - [349] = { - [sym__expression] = STATE(74), + [353] = { + [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23106,24 +23498,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [350] = { - [sym__expression] = STATE(370), + [354] = { + [sym__expression] = STATE(374), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23140,24 +23533,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [351] = { - [sym__expression] = STATE(371), + [355] = { + [sym__expression] = STATE(375), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23174,24 +23568,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [352] = { - [sym__expression] = STATE(369), + [356] = { + [sym__expression] = STATE(373), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23208,24 +23603,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [353] = { - [sym__expression] = STATE(368), + [357] = { + [sym__expression] = STATE(372), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23242,24 +23638,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [354] = { - [sym__expression] = STATE(367), + [358] = { + [sym__expression] = STATE(371), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23276,24 +23673,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [355] = { - [sym__expression] = STATE(366), + [359] = { + [sym__expression] = STATE(370), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23310,24 +23708,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [356] = { - [sym__expression] = STATE(365), + [360] = { + [sym__expression] = STATE(369), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23344,24 +23743,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [357] = { - [sym__expression] = STATE(364), + [361] = { + [sym__expression] = STATE(368), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23378,24 +23778,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [358] = { - [sym__expression] = STATE(363), + [362] = { + [sym__expression] = STATE(367), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23412,24 +23813,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [359] = { - [sym__expression] = STATE(362), + [363] = { + [sym__expression] = STATE(366), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23446,24 +23848,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [360] = { - [sym__expression] = STATE(361), + [364] = { + [sym__expression] = STATE(365), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23480,69 +23883,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [361] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_CARET_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [362] = { - [anon_sym_LPAREN] = ACTIONS(397), + [365] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(465), [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(467), [anon_sym_QMARK] = ACTIONS(465), [anon_sym_STAR_EQ] = ACTIONS(465), @@ -23568,22 +23931,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(465), [anon_sym_LT_LT] = ACTIONS(467), [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [363] = { - [anon_sym_LPAREN] = ACTIONS(397), + [366] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(469), [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(471), [anon_sym_QMARK] = ACTIONS(469), [anon_sym_STAR_EQ] = ACTIONS(469), @@ -23607,24 +23970,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(471), [anon_sym_LT_EQ] = ACTIONS(469), [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [364] = { - [anon_sym_LPAREN] = ACTIONS(397), + [367] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(473), [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(475), [anon_sym_QMARK] = ACTIONS(473), [anon_sym_STAR_EQ] = ACTIONS(473), @@ -23644,28 +24007,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(475), [anon_sym_EQ_EQ] = ACTIONS(473), [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [365] = { - [anon_sym_LPAREN] = ACTIONS(397), + [368] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(477), [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(479), [anon_sym_QMARK] = ACTIONS(477), [anon_sym_STAR_EQ] = ACTIONS(477), @@ -23678,76 +24041,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(477), [anon_sym_CARET_EQ] = ACTIONS(477), [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(477), [anon_sym_AMP_AMP] = ACTIONS(477), [anon_sym_PIPE] = ACTIONS(479), [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [366] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [367] = { - [anon_sym_LPAREN] = ACTIONS(397), + [369] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(481), [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -23760,35 +24082,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [368] = { - [anon_sym_LPAREN] = ACTIONS(397), + [370] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(481), [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -23801,153 +24123,235 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [369] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [371] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [370] = { - [anon_sym_LPAREN] = ACTIONS(397), + [372] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(485), [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [371] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(969), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [373] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [372] = { - [sym__expression] = STATE(373), + [374] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [375] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [376] = { + [sym__expression] = STATE(377), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -23964,65 +24368,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [373] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [377] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [374] = { - [sym__expression] = STATE(347), + [378] = { + [sym__expression] = STATE(351), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -24039,128 +24444,129 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(348), - [sym_designator] = STATE(343), - [aux_sym__initializer_list_contents_repeat1] = STATE(377), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), - [anon_sym_DOT] = ACTIONS(385), + [sym_initializer_list] = STATE(352), + [sym_designator] = STATE(347), + [sym_concatenated_string] = STATE(53), + [aux_sym__initializer_list_contents_repeat1] = STATE(381), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [375] = { - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PERCENT_EQ] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_LT_LT_EQ] = ACTIONS(973), - [anon_sym_GT_GT_EQ] = ACTIONS(973), - [anon_sym_AMP_EQ] = ACTIONS(973), - [anon_sym_CARET_EQ] = ACTIONS(973), - [anon_sym_PIPE_EQ] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_PLUS_PLUS] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_DASH_GT] = ACTIONS(973), + [379] = { + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_PERCENT_EQ] = ACTIONS(991), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_LT_LT_EQ] = ACTIONS(991), + [anon_sym_GT_GT_EQ] = ACTIONS(991), + [anon_sym_AMP_EQ] = ACTIONS(991), + [anon_sym_CARET_EQ] = ACTIONS(991), + [anon_sym_PIPE_EQ] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DASH_GT] = ACTIONS(991), [sym_comment] = ACTIONS(121), }, - [376] = { - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_COLON] = ACTIONS(977), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_PERCENT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), + [380] = { + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_COLON] = ACTIONS(995), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_PERCENT_EQ] = ACTIONS(995), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_LT_LT_EQ] = ACTIONS(995), + [anon_sym_GT_GT_EQ] = ACTIONS(995), + [anon_sym_AMP_EQ] = ACTIONS(995), + [anon_sym_CARET_EQ] = ACTIONS(995), + [anon_sym_PIPE_EQ] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE_PIPE] = ACTIONS(995), + [anon_sym_AMP_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_DOT] = ACTIONS(995), + [anon_sym_DASH_GT] = ACTIONS(995), [sym_comment] = ACTIONS(121), }, - [377] = { - [sym_designator] = STATE(346), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(385), + [381] = { + [sym_designator] = STATE(350), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(387), [sym_comment] = ACTIONS(121), }, - [378] = { - [sym__expression] = STATE(379), + [382] = { + [sym__expression] = STATE(383), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -24177,85 +24583,86 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(380), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_initializer_list] = STATE(384), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [379] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [383] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [380] = { - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), + [384] = { + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), [sym_comment] = ACTIONS(121), }, - [381] = { - [anon_sym_LBRACK] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), + [385] = { + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1003), [sym_comment] = ACTIONS(121), }, - [382] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [386] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -24272,12 +24679,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(384), + [sym_type_name] = STATE(388), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -24287,180 +24695,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), - [sym_comment] = ACTIONS(121), - }, - [383] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [384] = { - [anon_sym_RPAREN] = ACTIONS(987), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [385] = { - [sym__expression] = STATE(329), - [sym_conditional_expression] = STATE(53), - [sym_assignment_expression] = STATE(53), - [sym_pointer_expression] = STATE(53), - [sym_logical_expression] = STATE(53), - [sym_bitwise_expression] = STATE(53), - [sym_equality_expression] = STATE(53), - [sym_relational_expression] = STATE(53), - [sym_shift_expression] = STATE(53), - [sym_math_expression] = STATE(53), - [sym_cast_expression] = STATE(53), - [sym_sizeof_expression] = STATE(53), - [sym_subscript_expression] = STATE(53), - [sym_call_expression] = STATE(53), - [sym_field_expression] = STATE(53), - [sym_compound_literal_expression] = STATE(53), - [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [387] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [386] = { - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_RBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(995), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_PERCENT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(993), - [anon_sym_PLUS_PLUS] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [388] = { + [anon_sym_RPAREN] = ACTIONS(1005), [sym_comment] = ACTIONS(121), }, - [387] = { - [sym__expression] = STATE(388), - [sym_comma_expression] = STATE(389), + [389] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -24477,211 +24772,64 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [388] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [389] = { - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_comment] = ACTIONS(121), - }, - [390] = { - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(1001), - [anon_sym_COLON] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(1001), - [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_PERCENT] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [391] = { - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_COLON] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(1003), - [anon_sym_STAR_EQ] = ACTIONS(1003), - [anon_sym_SLASH_EQ] = ACTIONS(1003), - [anon_sym_PERCENT_EQ] = ACTIONS(1003), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), - [anon_sym_LT_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_GT_EQ] = ACTIONS(1003), - [anon_sym_AMP_EQ] = ACTIONS(1003), - [anon_sym_CARET_EQ] = ACTIONS(1003), - [anon_sym_PIPE_EQ] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_LT] = ACTIONS(1005), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_PERCENT] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [392] = { - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_EQ] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1007), - [anon_sym_STAR_EQ] = ACTIONS(1007), - [anon_sym_SLASH_EQ] = ACTIONS(1007), - [anon_sym_PERCENT_EQ] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1007), - [anon_sym_DASH_EQ] = ACTIONS(1007), - [anon_sym_LT_LT_EQ] = ACTIONS(1007), - [anon_sym_GT_GT_EQ] = ACTIONS(1007), - [anon_sym_AMP_EQ] = ACTIONS(1007), - [anon_sym_CARET_EQ] = ACTIONS(1007), - [anon_sym_PIPE_EQ] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_CARET] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1007), - [anon_sym_BANG_EQ] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_LT_EQ] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_SLASH] = ACTIONS(1009), - [anon_sym_PERCENT] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [393] = { + [390] = { [anon_sym_LPAREN] = ACTIONS(1011), [anon_sym_COMMA] = ACTIONS(1011), [anon_sym_RPAREN] = ACTIONS(1011), [anon_sym_SEMI] = ACTIONS(1011), [anon_sym_RBRACE] = ACTIONS(1011), [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(1011), [anon_sym_RBRACK] = ACTIONS(1011), [anon_sym_EQ] = ACTIONS(1013), [anon_sym_COLON] = ACTIONS(1011), @@ -24715,62 +24863,324 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(1013), [anon_sym_DASH_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(1011), + [anon_sym_DASH_GT] = ACTIONS(1011), + [sym_comment] = ACTIONS(121), + }, + [391] = { + [sym__expression] = STATE(392), + [sym_comma_expression] = STATE(393), + [sym_conditional_expression] = STATE(53), + [sym_assignment_expression] = STATE(53), + [sym_pointer_expression] = STATE(53), + [sym_logical_expression] = STATE(53), + [sym_bitwise_expression] = STATE(53), + [sym_equality_expression] = STATE(53), + [sym_relational_expression] = STATE(53), + [sym_shift_expression] = STATE(53), + [sym_math_expression] = STATE(53), + [sym_cast_expression] = STATE(53), + [sym_sizeof_expression] = STATE(53), + [sym_subscript_expression] = STATE(53), + [sym_call_expression] = STATE(53), + [sym_field_expression] = STATE(53), + [sym_compound_literal_expression] = STATE(53), + [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), + [sym_comment] = ACTIONS(121), + }, + [392] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [393] = { + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1015), [sym_comment] = ACTIONS(121), }, [394] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(1017), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_COLON] = ACTIONS(1017), + [anon_sym_QMARK] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1017), + [anon_sym_AMP_AMP] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_CARET] = ACTIONS(1019), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(1019), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_LT_LT] = ACTIONS(1019), + [anon_sym_GT_GT] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PERCENT] = ACTIONS(1019), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [395] = { - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_QMARK] = ACTIONS(1021), + [anon_sym_STAR_EQ] = ACTIONS(1021), + [anon_sym_SLASH_EQ] = ACTIONS(1021), + [anon_sym_PERCENT_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1021), + [anon_sym_DASH_EQ] = ACTIONS(1021), + [anon_sym_LT_LT_EQ] = ACTIONS(1021), + [anon_sym_GT_GT_EQ] = ACTIONS(1021), + [anon_sym_AMP_EQ] = ACTIONS(1021), + [anon_sym_CARET_EQ] = ACTIONS(1021), + [anon_sym_PIPE_EQ] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_CARET] = ACTIONS(1023), + [anon_sym_EQ_EQ] = ACTIONS(1021), + [anon_sym_BANG_EQ] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1023), + [anon_sym_GT] = ACTIONS(1023), + [anon_sym_LT_EQ] = ACTIONS(1021), + [anon_sym_GT_EQ] = ACTIONS(1021), + [anon_sym_LT_LT] = ACTIONS(1023), + [anon_sym_GT_GT] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_PERCENT] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1021), + [anon_sym_PLUS_PLUS] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [396] = { - [anon_sym_RPAREN] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(1025), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(1025), + [anon_sym_STAR_EQ] = ACTIONS(1025), + [anon_sym_SLASH_EQ] = ACTIONS(1025), + [anon_sym_PERCENT_EQ] = ACTIONS(1025), + [anon_sym_PLUS_EQ] = ACTIONS(1025), + [anon_sym_DASH_EQ] = ACTIONS(1025), + [anon_sym_LT_LT_EQ] = ACTIONS(1025), + [anon_sym_GT_GT_EQ] = ACTIONS(1025), + [anon_sym_AMP_EQ] = ACTIONS(1025), + [anon_sym_CARET_EQ] = ACTIONS(1025), + [anon_sym_PIPE_EQ] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1025), + [anon_sym_AMP_AMP] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1027), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1025), + [anon_sym_BANG_EQ] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_LT_EQ] = ACTIONS(1025), + [anon_sym_GT_EQ] = ACTIONS(1025), + [anon_sym_LT_LT] = ACTIONS(1027), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(1027), + [anon_sym_PERCENT] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, [397] = { - [sym__expression] = STATE(329), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(1029), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PERCENT_EQ] = ACTIONS(1029), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_LT_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_GT_EQ] = ACTIONS(1029), + [anon_sym_AMP_EQ] = ACTIONS(1029), + [anon_sym_CARET_EQ] = ACTIONS(1029), + [anon_sym_PIPE_EQ] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1029), + [anon_sym_AMP_AMP] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1031), + [anon_sym_CARET] = ACTIONS(1031), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_SLASH] = ACTIONS(1031), + [anon_sym_PERCENT] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [398] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(1033), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [399] = { + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1035), + [sym_comment] = ACTIONS(121), + }, + [400] = { + [anon_sym_RPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(121), + }, + [401] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -24787,30 +25197,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [398] = { - [anon_sym_RPAREN] = ACTIONS(1021), + [402] = { + [anon_sym_RPAREN] = ACTIONS(1039), [sym_comment] = ACTIONS(121), }, - [399] = { - [sym__expression] = STATE(329), + [403] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -24827,136 +25238,137 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [400] = { + [404] = { [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), [anon_sym_LBRACK] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_COLON] = ACTIONS(1041), [sym_comment] = ACTIONS(121), }, - [401] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [405] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [402] = { - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1029), - [anon_sym_restrict] = ACTIONS(1029), - [anon_sym_volatile] = ACTIONS(1029), - [anon_sym_unsigned] = ACTIONS(1029), - [anon_sym_long] = ACTIONS(1029), - [anon_sym_short] = ACTIONS(1029), - [anon_sym_enum] = ACTIONS(1029), - [anon_sym_struct] = ACTIONS(1029), - [anon_sym_union] = ACTIONS(1029), - [sym_identifier] = ACTIONS(1031), + [406] = { + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_restrict] = ACTIONS(1047), + [anon_sym_volatile] = ACTIONS(1047), + [anon_sym_unsigned] = ACTIONS(1047), + [anon_sym_long] = ACTIONS(1047), + [anon_sym_short] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1047), + [anon_sym_union] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1049), [sym_comment] = ACTIONS(121), }, - [403] = { + [407] = { [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), [anon_sym_LBRACK] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_COLON] = ACTIONS(1051), [sym_comment] = ACTIONS(121), }, - [404] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [408] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [405] = { - [sym__declarator] = STATE(257), + [409] = { + [sym__declarator] = STATE(261), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), @@ -24965,22 +25377,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [406] = { - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_restrict] = ACTIONS(1037), - [anon_sym_volatile] = ACTIONS(1037), - [anon_sym_unsigned] = ACTIONS(1037), - [anon_sym_long] = ACTIONS(1037), - [anon_sym_short] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [sym_identifier] = ACTIONS(1039), + [410] = { + [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1055), + [anon_sym_restrict] = ACTIONS(1055), + [anon_sym_volatile] = ACTIONS(1055), + [anon_sym_unsigned] = ACTIONS(1055), + [anon_sym_long] = ACTIONS(1055), + [anon_sym_short] = ACTIONS(1055), + [anon_sym_enum] = ACTIONS(1055), + [anon_sym_struct] = ACTIONS(1055), + [anon_sym_union] = ACTIONS(1055), + [sym_identifier] = ACTIONS(1057), [sym_comment] = ACTIONS(121), }, - [407] = { - [sym__expression] = STATE(410), + [411] = { + [sym__expression] = STATE(414), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -24997,100 +25409,101 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [408] = { - [aux_sym_struct_declaration_repeat1] = STATE(409), + [412] = { + [aux_sym_struct_declaration_repeat1] = STATE(413), [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(837), - [anon_sym_SEMI] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(815), + [anon_sym_COLON] = ACTIONS(833), [sym_comment] = ACTIONS(121), }, - [409] = { - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(841), + [413] = { + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(859), [sym_comment] = ACTIONS(121), }, - [410] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [414] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [411] = { - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_COMMA] = ACTIONS(1041), - [anon_sym_RPAREN] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_COLON] = ACTIONS(1041), - [sym_identifier] = ACTIONS(1043), + [415] = { + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [sym_identifier] = ACTIONS(1061), [sym_comment] = ACTIONS(121), }, - [412] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [416] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(279), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_RBRACE] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(801), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -25103,19 +25516,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [413] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [417] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(275), + [sym_struct_declaration] = STATE(279), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym_struct_specifier_repeat1] = STATE(420), - [anon_sym_RBRACE] = ACTIONS(1045), + [aux_sym_struct_specifier_repeat1] = STATE(424), + [anon_sym_RBRACE] = ACTIONS(1063), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -25128,31 +25541,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [414] = { - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1051), + [418] = { + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [sym_identifier] = ACTIONS(1069), [sym_comment] = ACTIONS(121), }, - [415] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [419] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(275), + [sym_struct_declaration] = STATE(279), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym_struct_specifier_repeat1] = STATE(417), - [anon_sym_RBRACE] = ACTIONS(1053), + [aux_sym_struct_specifier_repeat1] = STATE(421), + [anon_sym_RBRACE] = ACTIONS(1071), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -25165,29 +25578,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [416] = { - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_COLON] = ACTIONS(1055), - [sym_identifier] = ACTIONS(1057), + [420] = { + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_COMMA] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_COLON] = ACTIONS(1073), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(121), }, - [417] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [421] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(279), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1077), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -25200,40 +25613,40 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [418] = { - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_COLON] = ACTIONS(1061), - [sym_identifier] = ACTIONS(1063), + [422] = { + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_COMMA] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1079), + [anon_sym_COLON] = ACTIONS(1079), + [sym_identifier] = ACTIONS(1081), [sym_comment] = ACTIONS(121), }, - [419] = { - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_COLON] = ACTIONS(1065), - [sym_identifier] = ACTIONS(1067), + [423] = { + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_COMMA] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_COLON] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), [sym_comment] = ACTIONS(121), }, - [420] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [424] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(279), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1071), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -25246,81 +25659,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [421] = { - [sym__enum_specifier_contents] = STATE(433), - [sym_enumerator] = STATE(426), - [sym_identifier] = ACTIONS(1069), - [sym_comment] = ACTIONS(121), - }, - [422] = { - [anon_sym_LPAREN] = ACTIONS(1071), - [anon_sym_COMMA] = ACTIONS(1071), - [anon_sym_RPAREN] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_STAR] = ACTIONS(1071), - [anon_sym_LBRACK] = ACTIONS(1071), - [anon_sym_COLON] = ACTIONS(1071), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(121), - }, - [423] = { - [sym__enum_specifier_contents] = STATE(425), - [sym_enumerator] = STATE(426), - [sym_identifier] = ACTIONS(1069), - [sym_comment] = ACTIONS(121), - }, - [424] = { - [anon_sym_COMMA] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_EQ] = ACTIONS(1079), - [sym_comment] = ACTIONS(121), - }, [425] = { - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1083), - [sym_comment] = ACTIONS(121), - }, - [426] = { - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [sym_comment] = ACTIONS(121), - }, - [427] = { + [sym__enum_specifier_contents] = STATE(437), [sym_enumerator] = STATE(430), - [anon_sym_RBRACE] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1069), + [sym_identifier] = ACTIONS(1087), [sym_comment] = ACTIONS(121), }, - [428] = { + [426] = { [anon_sym_LPAREN] = ACTIONS(1089), [anon_sym_COMMA] = ACTIONS(1089), [anon_sym_RPAREN] = ACTIONS(1089), [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1091), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_COLON] = ACTIONS(1089), - [sym_identifier] = ACTIONS(1091), + [sym_identifier] = ACTIONS(1093), + [sym_comment] = ACTIONS(121), + }, + [427] = { + [sym__enum_specifier_contents] = STATE(429), + [sym_enumerator] = STATE(430), + [sym_identifier] = ACTIONS(1087), + [sym_comment] = ACTIONS(121), + }, + [428] = { + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1097), [sym_comment] = ACTIONS(121), }, [429] = { - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_COMMA] = ACTIONS(1093), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_COLON] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1101), [sym_comment] = ACTIONS(121), }, [430] = { - [anon_sym_COMMA] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1103), [sym_comment] = ACTIONS(121), }, [431] = { - [sym__expression] = STATE(432), + [sym_enumerator] = STATE(434), + [anon_sym_RBRACE] = ACTIONS(1105), + [sym_identifier] = ACTIONS(1087), + [sym_comment] = ACTIONS(121), + }, + [432] = { + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_COMMA] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1107), + [anon_sym_COLON] = ACTIONS(1107), + [sym_identifier] = ACTIONS(1109), + [sym_comment] = ACTIONS(121), + }, + [433] = { + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_COLON] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [sym_comment] = ACTIONS(121), + }, + [434] = { + [anon_sym_COMMA] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1115), + [sym_comment] = ACTIONS(121), + }, + [435] = { + [sym__expression] = STATE(436), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25337,87 +25750,88 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [432] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [436] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(1117), + [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [433] = { - [anon_sym_COMMA] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1103), + [437] = { + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1121), [sym_comment] = ACTIONS(121), }, - [434] = { - [sym_enumerator] = STATE(430), - [anon_sym_RBRACE] = ACTIONS(1083), - [sym_identifier] = ACTIONS(1069), + [438] = { + [sym_enumerator] = STATE(434), + [anon_sym_RBRACE] = ACTIONS(1101), + [sym_identifier] = ACTIONS(1087), [sym_comment] = ACTIONS(121), }, - [435] = { - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), + [439] = { + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_COMMA] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_COLON] = ACTIONS(1123), + [sym_identifier] = ACTIONS(1125), [sym_comment] = ACTIONS(121), }, - [436] = { - [sym__expression] = STATE(329), + [440] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25434,67 +25848,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [437] = { - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(671), + [441] = { + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(677), + [anon_sym_LBRACK] = ACTIONS(689), [sym_comment] = ACTIONS(121), }, - [438] = { - [anon_sym_RPAREN] = ACTIONS(1113), + [442] = { + [anon_sym_RPAREN] = ACTIONS(1131), [sym_comment] = ACTIONS(121), }, - [439] = { - [sym__expression] = STATE(329), + [443] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25511,33 +25926,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [440] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [444] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25554,12 +25970,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(442), + [sym_type_name] = STATE(446), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -25569,66 +25986,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [441] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [445] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [442] = { - [anon_sym_RPAREN] = ACTIONS(1115), + [446] = { + [anon_sym_RPAREN] = ACTIONS(1133), [sym_comment] = ACTIONS(121), }, - [443] = { - [sym__expression] = STATE(329), + [447] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25645,60 +26062,61 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), [anon_sym_PLUS] = ACTIONS(325), [anon_sym_DASH] = ACTIONS(325), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), [anon_sym_DASH_DASH] = ACTIONS(327), [anon_sym_PLUS_PLUS] = ACTIONS(327), [anon_sym_sizeof] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [444] = { - [anon_sym_RPAREN] = ACTIONS(1121), + [448] = { + [anon_sym_RPAREN] = ACTIONS(1139), [sym_comment] = ACTIONS(121), }, - [445] = { - [sym__expression] = STATE(329), + [449] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25715,9 +26133,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(321), @@ -25729,19 +26148,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [446] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [450] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25758,12 +26177,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(448), + [sym_type_name] = STATE(452), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -25773,66 +26193,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [447] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [451] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [448] = { - [anon_sym_RPAREN] = ACTIONS(1123), + [452] = { + [anon_sym_RPAREN] = ACTIONS(1141), [sym_comment] = ACTIONS(121), }, - [449] = { - [sym__expression] = STATE(329), + [453] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25849,60 +26269,61 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [450] = { - [anon_sym_RPAREN] = ACTIONS(1129), + [454] = { + [anon_sym_RPAREN] = ACTIONS(1147), [sym_comment] = ACTIONS(121), }, - [451] = { - [sym__expression] = STATE(329), + [455] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25919,33 +26340,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [452] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [456] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -25962,12 +26384,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(454), + [sym_type_name] = STATE(458), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -25977,67 +26400,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [453] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [457] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [454] = { - [anon_sym_RPAREN] = ACTIONS(1131), + [458] = { + [anon_sym_RPAREN] = ACTIONS(1149), [sym_comment] = ACTIONS(121), }, - [455] = { - [sym__expression] = STATE(329), + [459] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -26054,61 +26477,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [456] = { - [anon_sym_RPAREN] = ACTIONS(1137), + [460] = { + [anon_sym_RPAREN] = ACTIONS(1155), [sym_comment] = ACTIONS(121), }, - [457] = { - [sym__expression] = STATE(329), + [461] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -26125,63 +26549,64 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [458] = { + [462] = { [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(285), [anon_sym_EQ] = ACTIONS(287), [sym_comment] = ACTIONS(121), }, - [459] = { - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1139), + [463] = { + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), [sym_comment] = ACTIONS(121), }, - [460] = { - [sym_declaration] = STATE(476), - [sym__declaration_specifiers] = STATE(477), - [sym_compound_statement] = STATE(478), + [464] = { + [sym_declaration] = STATE(480), + [sym__declaration_specifiers] = STATE(481), + [sym_compound_statement] = STATE(482), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(479), + [sym__type_specifier] = STATE(483), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__statement] = STATE(476), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [sym__statement] = STATE(480), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -26198,17 +26623,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym__empty_declaration] = STATE(476), + [sym_concatenated_string] = STATE(53), + [sym__empty_declaration] = STATE(480), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), - [aux_sym_compound_statement_repeat1] = STATE(482), + [aux_sym_compound_statement_repeat1] = STATE(486), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_extern] = ACTIONS(135), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -26223,171 +26649,171 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1185), [sym_comment] = ACTIONS(121), }, - [461] = { - [ts_builtin_sym_end] = ACTIONS(1169), - [anon_sym_POUNDinclude] = ACTIONS(1171), - [anon_sym_POUNDdefine] = ACTIONS(1171), - [anon_sym_POUNDifdef] = ACTIONS(1171), - [anon_sym_POUNDifndef] = ACTIONS(1171), - [anon_sym_POUNDendif] = ACTIONS(1171), - [anon_sym_POUNDelse] = ACTIONS(1171), - [sym_preproc_directive] = ACTIONS(1173), - [anon_sym_extern] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1171), - [anon_sym_typedef] = ACTIONS(1171), - [anon_sym_auto] = ACTIONS(1171), - [anon_sym_register] = ACTIONS(1171), - [anon_sym_const] = ACTIONS(1171), - [anon_sym_restrict] = ACTIONS(1171), - [anon_sym_volatile] = ACTIONS(1171), - [sym_function_specifier] = ACTIONS(1171), - [anon_sym_unsigned] = ACTIONS(1171), - [anon_sym_long] = ACTIONS(1171), - [anon_sym_short] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1171), - [anon_sym_struct] = ACTIONS(1171), - [anon_sym_union] = ACTIONS(1171), - [sym_identifier] = ACTIONS(1173), + [465] = { + [ts_builtin_sym_end] = ACTIONS(1187), + [anon_sym_POUNDinclude] = ACTIONS(1189), + [anon_sym_POUNDdefine] = ACTIONS(1189), + [anon_sym_POUNDifdef] = ACTIONS(1189), + [anon_sym_POUNDifndef] = ACTIONS(1189), + [anon_sym_POUNDendif] = ACTIONS(1189), + [anon_sym_POUNDelse] = ACTIONS(1189), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_typedef] = ACTIONS(1189), + [anon_sym_auto] = ACTIONS(1189), + [anon_sym_register] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_restrict] = ACTIONS(1189), + [anon_sym_volatile] = ACTIONS(1189), + [sym_function_specifier] = ACTIONS(1189), + [anon_sym_unsigned] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_struct] = ACTIONS(1189), + [anon_sym_union] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1191), [sym_comment] = ACTIONS(121), }, - [462] = { - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_extern] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1177), - [anon_sym_auto] = ACTIONS(1177), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_restrict] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1177), - [sym_function_specifier] = ACTIONS(1177), - [anon_sym_unsigned] = ACTIONS(1177), - [anon_sym_long] = ACTIONS(1177), - [anon_sym_short] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1177), - [anon_sym_union] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_goto] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_sizeof] = ACTIONS(1177), - [sym_number_literal] = ACTIONS(1177), - [sym_char_literal] = ACTIONS(1177), - [sym_string_literal] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), + [466] = { + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [sym_function_specifier] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1195), + [sym_char_literal] = ACTIONS(1195), + [sym_string_literal] = ACTIONS(1195), + [sym_identifier] = ACTIONS(1197), [sym_comment] = ACTIONS(121), }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [anon_sym_POUNDinclude] = ACTIONS(1183), - [anon_sym_POUNDdefine] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_POUNDifdef] = ACTIONS(1183), - [anon_sym_POUNDifndef] = ACTIONS(1183), - [anon_sym_POUNDendif] = ACTIONS(1183), - [anon_sym_POUNDelse] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [sym_function_specifier] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_sizeof] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1183), - [sym_char_literal] = ACTIONS(1183), - [sym_string_literal] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), + [467] = { + [ts_builtin_sym_end] = ACTIONS(1199), + [anon_sym_POUNDinclude] = ACTIONS(1201), + [anon_sym_POUNDdefine] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_POUNDifdef] = ACTIONS(1201), + [anon_sym_POUNDifndef] = ACTIONS(1201), + [anon_sym_POUNDendif] = ACTIONS(1201), + [anon_sym_POUNDelse] = ACTIONS(1201), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [sym_function_specifier] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [sym_number_literal] = ACTIONS(1201), + [sym_char_literal] = ACTIONS(1201), + [sym_string_literal] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1203), [sym_comment] = ACTIONS(121), }, - [464] = { - [anon_sym_LPAREN] = ACTIONS(1187), + [468] = { + [anon_sym_LPAREN] = ACTIONS(1205), [sym_comment] = ACTIONS(121), }, - [465] = { - [anon_sym_LPAREN] = ACTIONS(1189), + [469] = { + [anon_sym_LPAREN] = ACTIONS(1207), [sym_comment] = ACTIONS(121), }, - [466] = { - [sym__expression] = STATE(669), + [470] = { + [sym__expression] = STATE(673), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -26404,47 +26830,48 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [467] = { - [anon_sym_COLON] = ACTIONS(1191), + [471] = { + [anon_sym_COLON] = ACTIONS(1209), [sym_comment] = ACTIONS(121), }, - [468] = { - [anon_sym_LPAREN] = ACTIONS(1193), + [472] = { + [anon_sym_LPAREN] = ACTIONS(1211), [sym_comment] = ACTIONS(121), }, - [469] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(541), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [473] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(545), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -26461,41 +26888,42 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [470] = { - [anon_sym_LPAREN] = ACTIONS(1209), + [474] = { + [anon_sym_LPAREN] = ACTIONS(1227), [sym_comment] = ACTIONS(121), }, - [471] = { - [sym__expression] = STATE(503), + [475] = { + [sym__expression] = STATE(507), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -26512,347 +26940,82 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [472] = { - [anon_sym_SEMI] = ACTIONS(1213), - [sym_comment] = ACTIONS(121), - }, - [473] = { - [anon_sym_SEMI] = ACTIONS(1215), - [sym_comment] = ACTIONS(121), - }, - [474] = { - [sym_identifier] = ACTIONS(1217), - [sym_comment] = ACTIONS(121), - }, - [475] = { - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), - [sym_identifier] = ACTIONS(198), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, [476] = { - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [sym_function_specifier] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1223), - [sym_char_literal] = ACTIONS(1223), - [sym_string_literal] = ACTIONS(1223), - [sym_identifier] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1231), [sym_comment] = ACTIONS(121), }, [477] = { - [sym__type_specifier] = STATE(489), - [sym_sized_type_specifier] = STATE(21), - [sym_enum_specifier] = STATE(21), - [sym_struct_specifier] = STATE(21), - [sym_union_specifier] = STATE(21), - [sym_macro_type_specifier] = STATE(21), - [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_unsigned] = ACTIONS(141), - [anon_sym_long] = ACTIONS(141), - [anon_sym_short] = ACTIONS(141), - [anon_sym_enum] = ACTIONS(143), - [anon_sym_struct] = ACTIONS(145), - [anon_sym_union] = ACTIONS(147), - [sym_identifier] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(1233), [sym_comment] = ACTIONS(121), }, [478] = { - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1229), - [anon_sym_auto] = ACTIONS(1229), - [anon_sym_register] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_restrict] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [sym_function_specifier] = ACTIONS(1229), - [anon_sym_unsigned] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_struct] = ACTIONS(1229), - [anon_sym_union] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1229), - [sym_number_literal] = ACTIONS(1229), - [sym_char_literal] = ACTIONS(1229), - [sym_string_literal] = ACTIONS(1229), - [sym_identifier] = ACTIONS(1231), + [sym_identifier] = ACTIONS(1235), [sym_comment] = ACTIONS(121), }, [479] = { - [sym__declarator] = STATE(488), - [sym_pointer_declarator] = STATE(32), - [sym_function_declarator] = STATE(32), - [sym_array_declarator] = STATE(32), - [sym_init_declarator] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_SEMI] = ACTIONS(222), - [anon_sym_STAR] = ACTIONS(289), - [sym_identifier] = ACTIONS(226), + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COLON] = ACTIONS(1237), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), + [sym_identifier] = ACTIONS(198), [sym_comment] = ACTIONS(121), }, [480] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [481] = { - [anon_sym_SEMI] = ACTIONS(1235), - [sym_comment] = ACTIONS(121), - }, - [482] = { - [sym_declaration] = STATE(484), - [sym__declaration_specifiers] = STATE(477), - [sym_compound_statement] = STATE(478), - [sym_storage_class_specifier] = STATE(9), - [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(479), - [sym_sized_type_specifier] = STATE(21), - [sym_enum_specifier] = STATE(21), - [sym_struct_specifier] = STATE(21), - [sym_union_specifier] = STATE(21), - [sym__statement] = STATE(484), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), - [sym_conditional_expression] = STATE(53), - [sym_assignment_expression] = STATE(53), - [sym_pointer_expression] = STATE(53), - [sym_logical_expression] = STATE(53), - [sym_bitwise_expression] = STATE(53), - [sym_equality_expression] = STATE(53), - [sym_relational_expression] = STATE(53), - [sym_shift_expression] = STATE(53), - [sym_math_expression] = STATE(53), - [sym_cast_expression] = STATE(53), - [sym_sizeof_expression] = STATE(53), - [sym_subscript_expression] = STATE(53), - [sym_call_expression] = STATE(53), - [sym_field_expression] = STATE(53), - [sym_compound_literal_expression] = STATE(53), - [sym_parenthesized_expression] = STATE(53), - [sym__empty_declaration] = STATE(484), - [sym_macro_type_specifier] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(23), - [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_extern] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_static] = ACTIONS(135), - [anon_sym_typedef] = ACTIONS(135), - [anon_sym_auto] = ACTIONS(135), - [anon_sym_register] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_restrict] = ACTIONS(137), - [anon_sym_volatile] = ACTIONS(137), - [sym_function_specifier] = ACTIONS(139), - [anon_sym_unsigned] = ACTIONS(141), - [anon_sym_long] = ACTIONS(141), - [anon_sym_short] = ACTIONS(141), - [anon_sym_enum] = ACTIONS(143), - [anon_sym_struct] = ACTIONS(145), - [anon_sym_union] = ACTIONS(147), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1167), - [sym_comment] = ACTIONS(121), - }, - [483] = { - [ts_builtin_sym_end] = ACTIONS(1239), - [anon_sym_POUNDinclude] = ACTIONS(1241), - [anon_sym_POUNDdefine] = ACTIONS(1241), [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_POUNDifdef] = ACTIONS(1241), - [anon_sym_POUNDifndef] = ACTIONS(1241), - [anon_sym_POUNDendif] = ACTIONS(1241), - [anon_sym_POUNDelse] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1243), [anon_sym_SEMI] = ACTIONS(1239), [anon_sym_extern] = ACTIONS(1241), [anon_sym_LBRACE] = ACTIONS(1239), @@ -26873,7 +27036,6 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1241), [anon_sym_union] = ACTIONS(1241), [anon_sym_if] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1241), [anon_sym_switch] = ACTIONS(1241), [anon_sym_case] = ACTIONS(1241), [anon_sym_default] = ACTIONS(1241), @@ -26898,7 +27060,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(121), }, - [484] = { + [481] = { + [sym__type_specifier] = STATE(493), + [sym_sized_type_specifier] = STATE(21), + [sym_enum_specifier] = STATE(21), + [sym_struct_specifier] = STATE(21), + [sym_union_specifier] = STATE(21), + [sym_macro_type_specifier] = STATE(21), + [aux_sym_sized_type_specifier_repeat1] = STATE(24), + [anon_sym_unsigned] = ACTIONS(141), + [anon_sym_long] = ACTIONS(141), + [anon_sym_short] = ACTIONS(141), + [anon_sym_enum] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(145), + [anon_sym_union] = ACTIONS(147), + [sym_identifier] = ACTIONS(149), + [sym_comment] = ACTIONS(121), + }, + [482] = { [anon_sym_LPAREN] = ACTIONS(1245), [anon_sym_SEMI] = ACTIONS(1245), [anon_sym_extern] = ACTIONS(1247), @@ -26920,6 +27099,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1247), [anon_sym_union] = ACTIONS(1247), [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), [anon_sym_switch] = ACTIONS(1247), [anon_sym_case] = ACTIONS(1247), [anon_sym_default] = ACTIONS(1247), @@ -26944,56 +27124,89 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, + [483] = { + [sym__declarator] = STATE(492), + [sym_pointer_declarator] = STATE(32), + [sym_function_declarator] = STATE(32), + [sym_array_declarator] = STATE(32), + [sym_init_declarator] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_SEMI] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(289), + [sym_identifier] = ACTIONS(226), + [sym_comment] = ACTIONS(121), + }, + [484] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, [485] = { - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_auto] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [sym_function_specifier] = ACTIONS(1253), - [anon_sym_unsigned] = ACTIONS(1253), - [anon_sym_long] = ACTIONS(1253), - [anon_sym_short] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_goto] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_sizeof] = ACTIONS(1253), - [sym_number_literal] = ACTIONS(1253), - [sym_char_literal] = ACTIONS(1253), - [sym_string_literal] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1253), [sym_comment] = ACTIONS(121), }, [486] = { - [sym__expression] = STATE(487), - [sym_comma_expression] = STATE(389), + [sym_declaration] = STATE(488), + [sym__declaration_specifiers] = STATE(481), + [sym_compound_statement] = STATE(482), + [sym_storage_class_specifier] = STATE(9), + [sym_type_qualifier] = STATE(9), + [sym__type_specifier] = STATE(483), + [sym_sized_type_specifier] = STATE(21), + [sym_enum_specifier] = STATE(21), + [sym_struct_specifier] = STATE(21), + [sym_union_specifier] = STATE(21), + [sym__statement] = STATE(488), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -27010,64 +27223,282 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), + [sym_concatenated_string] = STATE(53), + [sym__empty_declaration] = STATE(488), + [sym_macro_type_specifier] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(23), + [aux_sym_sized_type_specifier_repeat1] = STATE(24), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_static] = ACTIONS(135), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_auto] = ACTIONS(135), + [anon_sym_register] = ACTIONS(135), + [anon_sym_const] = ACTIONS(137), + [anon_sym_restrict] = ACTIONS(137), + [anon_sym_volatile] = ACTIONS(137), + [sym_function_specifier] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(141), + [anon_sym_long] = ACTIONS(141), + [anon_sym_short] = ACTIONS(141), + [anon_sym_enum] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(145), + [anon_sym_union] = ACTIONS(147), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1185), [sym_comment] = ACTIONS(121), }, [487] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [ts_builtin_sym_end] = ACTIONS(1257), + [anon_sym_POUNDinclude] = ACTIONS(1259), + [anon_sym_POUNDdefine] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_POUNDifdef] = ACTIONS(1259), + [anon_sym_POUNDifndef] = ACTIONS(1259), + [anon_sym_POUNDendif] = ACTIONS(1259), + [anon_sym_POUNDelse] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [sym_function_specifier] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1259), + [sym_string_literal] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1261), [sym_comment] = ACTIONS(121), }, [488] = { + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1265), + [anon_sym_auto] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_restrict] = ACTIONS(1265), + [anon_sym_volatile] = ACTIONS(1265), + [sym_function_specifier] = ACTIONS(1265), + [anon_sym_unsigned] = ACTIONS(1265), + [anon_sym_long] = ACTIONS(1265), + [anon_sym_short] = ACTIONS(1265), + [anon_sym_enum] = ACTIONS(1265), + [anon_sym_struct] = ACTIONS(1265), + [anon_sym_union] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_switch] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_goto] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_sizeof] = ACTIONS(1265), + [sym_number_literal] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [sym_string_literal] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [sym_comment] = ACTIONS(121), + }, + [489] = { + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [sym_function_specifier] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1271), + [sym_char_literal] = ACTIONS(1271), + [sym_string_literal] = ACTIONS(1271), + [sym_identifier] = ACTIONS(1273), + [sym_comment] = ACTIONS(121), + }, + [490] = { + [sym__expression] = STATE(491), + [sym_comma_expression] = STATE(393), + [sym_conditional_expression] = STATE(53), + [sym_assignment_expression] = STATE(53), + [sym_pointer_expression] = STATE(53), + [sym_logical_expression] = STATE(53), + [sym_bitwise_expression] = STATE(53), + [sym_equality_expression] = STATE(53), + [sym_relational_expression] = STATE(53), + [sym_shift_expression] = STATE(53), + [sym_math_expression] = STATE(53), + [sym_cast_expression] = STATE(53), + [sym_sizeof_expression] = STATE(53), + [sym_subscript_expression] = STATE(53), + [sym_call_expression] = STATE(53), + [sym_field_expression] = STATE(53), + [sym_compound_literal_expression] = STATE(53), + [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), + [sym_comment] = ACTIONS(121), + }, + [491] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [492] = { [aux_sym_declaration_repeat1] = STATE(37), [anon_sym_LPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(279), @@ -27076,74 +27507,74 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(287), [sym_comment] = ACTIONS(121), }, - [489] = { - [sym__declarator] = STATE(491), + [493] = { + [sym__declarator] = STATE(495), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym_init_declarator] = STATE(492), + [sym_init_declarator] = STATE(496), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1275), [anon_sym_STAR] = ACTIONS(289), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [490] = { - [ts_builtin_sym_end] = ACTIONS(1259), - [anon_sym_POUNDinclude] = ACTIONS(1261), - [anon_sym_POUNDdefine] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_POUNDifdef] = ACTIONS(1261), - [anon_sym_POUNDifndef] = ACTIONS(1261), - [anon_sym_POUNDendif] = ACTIONS(1261), - [anon_sym_POUNDelse] = ACTIONS(1261), - [sym_preproc_directive] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1261), - [anon_sym_auto] = ACTIONS(1261), - [anon_sym_register] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_restrict] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1261), - [sym_function_specifier] = ACTIONS(1261), - [anon_sym_unsigned] = ACTIONS(1261), - [anon_sym_long] = ACTIONS(1261), - [anon_sym_short] = ACTIONS(1261), - [anon_sym_enum] = ACTIONS(1261), - [anon_sym_struct] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1261), - [anon_sym_switch] = ACTIONS(1261), - [anon_sym_case] = ACTIONS(1261), - [anon_sym_default] = ACTIONS(1261), - [anon_sym_while] = ACTIONS(1261), - [anon_sym_do] = ACTIONS(1261), - [anon_sym_for] = ACTIONS(1261), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1261), - [anon_sym_goto] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_sizeof] = ACTIONS(1261), - [sym_number_literal] = ACTIONS(1261), - [sym_char_literal] = ACTIONS(1261), - [sym_string_literal] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1263), + [494] = { + [ts_builtin_sym_end] = ACTIONS(1277), + [anon_sym_POUNDinclude] = ACTIONS(1279), + [anon_sym_POUNDdefine] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_POUNDifdef] = ACTIONS(1279), + [anon_sym_POUNDifndef] = ACTIONS(1279), + [anon_sym_POUNDendif] = ACTIONS(1279), + [anon_sym_POUNDelse] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [sym_function_specifier] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1279), + [sym_char_literal] = ACTIONS(1279), + [sym_string_literal] = ACTIONS(1279), + [sym_identifier] = ACTIONS(1281), [sym_comment] = ACTIONS(121), }, - [491] = { - [aux_sym_declaration_repeat1] = STATE(493), + [495] = { + [aux_sym_declaration_repeat1] = STATE(497), [anon_sym_LPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(279), [anon_sym_SEMI] = ACTIONS(299), @@ -27151,88 +27582,88 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(287), [sym_comment] = ACTIONS(121), }, - [492] = { - [aux_sym_declaration_repeat1] = STATE(493), + [496] = { + [aux_sym_declaration_repeat1] = STATE(497), [anon_sym_COMMA] = ACTIONS(279), [anon_sym_SEMI] = ACTIONS(299), [sym_comment] = ACTIONS(121), }, - [493] = { + [497] = { [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1283), [sym_comment] = ACTIONS(121), }, - [494] = { - [ts_builtin_sym_end] = ACTIONS(1267), - [anon_sym_POUNDinclude] = ACTIONS(1269), - [anon_sym_POUNDdefine] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_POUNDifdef] = ACTIONS(1269), - [anon_sym_POUNDifndef] = ACTIONS(1269), - [anon_sym_POUNDendif] = ACTIONS(1269), - [anon_sym_POUNDelse] = ACTIONS(1269), - [sym_preproc_directive] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [sym_function_specifier] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_sizeof] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1269), - [sym_char_literal] = ACTIONS(1269), - [sym_string_literal] = ACTIONS(1269), - [sym_identifier] = ACTIONS(1271), + [498] = { + [ts_builtin_sym_end] = ACTIONS(1285), + [anon_sym_POUNDinclude] = ACTIONS(1287), + [anon_sym_POUNDdefine] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_POUNDifdef] = ACTIONS(1287), + [anon_sym_POUNDifndef] = ACTIONS(1287), + [anon_sym_POUNDendif] = ACTIONS(1287), + [anon_sym_POUNDelse] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [sym_function_specifier] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1287), + [sym_char_literal] = ACTIONS(1287), + [sym_string_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1289), [sym_comment] = ACTIONS(121), }, - [495] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(497), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [499] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(501), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -27249,270 +27680,130 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), - [sym_comment] = ACTIONS(121), - }, - [496] = { - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), - [sym_comment] = ACTIONS(121), - }, - [497] = { - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [sym_function_specifier] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1277), - [sym_char_literal] = ACTIONS(1277), - [sym_string_literal] = ACTIONS(1277), - [sym_identifier] = ACTIONS(1279), - [sym_comment] = ACTIONS(121), - }, - [498] = { - [anon_sym_SEMI] = ACTIONS(1281), - [sym_comment] = ACTIONS(121), - }, - [499] = { - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [sym_function_specifier] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1285), - [sym_char_literal] = ACTIONS(1285), - [sym_string_literal] = ACTIONS(1285), - [sym_identifier] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, [500] = { - [anon_sym_LPAREN] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_RBRACE] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1291), - [anon_sym_typedef] = ACTIONS(1291), - [anon_sym_auto] = ACTIONS(1291), - [anon_sym_register] = ACTIONS(1291), - [anon_sym_const] = ACTIONS(1291), - [anon_sym_restrict] = ACTIONS(1291), - [anon_sym_volatile] = ACTIONS(1291), - [sym_function_specifier] = ACTIONS(1291), - [anon_sym_unsigned] = ACTIONS(1291), - [anon_sym_long] = ACTIONS(1291), - [anon_sym_short] = ACTIONS(1291), - [anon_sym_enum] = ACTIONS(1291), - [anon_sym_struct] = ACTIONS(1291), - [anon_sym_union] = ACTIONS(1291), - [anon_sym_if] = ACTIONS(1291), - [anon_sym_else] = ACTIONS(1291), - [anon_sym_switch] = ACTIONS(1291), - [anon_sym_case] = ACTIONS(1291), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_while] = ACTIONS(1291), - [anon_sym_do] = ACTIONS(1291), - [anon_sym_for] = ACTIONS(1291), - [anon_sym_return] = ACTIONS(1291), - [anon_sym_break] = ACTIONS(1291), - [anon_sym_continue] = ACTIONS(1291), - [anon_sym_goto] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [sym_number_literal] = ACTIONS(1291), - [sym_char_literal] = ACTIONS(1291), - [sym_string_literal] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COLON] = ACTIONS(1237), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, [501] = { - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [sym_function_specifier] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1297), - [sym_char_literal] = ACTIONS(1297), - [sym_string_literal] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [sym_function_specifier] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_else] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1295), + [sym_char_literal] = ACTIONS(1295), + [sym_string_literal] = ACTIONS(1295), + [sym_identifier] = ACTIONS(1297), [sym_comment] = ACTIONS(121), }, [502] = { + [anon_sym_SEMI] = ACTIONS(1299), + [sym_comment] = ACTIONS(121), + }, + [503] = { [anon_sym_LPAREN] = ACTIONS(1301), [anon_sym_SEMI] = ACTIONS(1301), [anon_sym_extern] = ACTIONS(1303), @@ -27559,104 +27850,245 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1305), [sym_comment] = ACTIONS(121), }, - [503] = { - [anon_sym_LPAREN] = ACTIONS(397), + [504] = { + [anon_sym_LPAREN] = ACTIONS(1307), [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1309), + [anon_sym_auto] = ACTIONS(1309), + [anon_sym_register] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_restrict] = ACTIONS(1309), + [anon_sym_volatile] = ACTIONS(1309), + [sym_function_specifier] = ACTIONS(1309), + [anon_sym_unsigned] = ACTIONS(1309), + [anon_sym_long] = ACTIONS(1309), + [anon_sym_short] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_switch] = ACTIONS(1309), + [anon_sym_case] = ACTIONS(1309), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_do] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_goto] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_sizeof] = ACTIONS(1309), + [sym_number_literal] = ACTIONS(1309), + [sym_char_literal] = ACTIONS(1309), + [sym_string_literal] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1311), [sym_comment] = ACTIONS(121), }, - [504] = { - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [sym_function_specifier] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1311), - [sym_string_literal] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1313), + [505] = { + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [sym_function_specifier] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1315), + [sym_char_literal] = ACTIONS(1315), + [sym_string_literal] = ACTIONS(1315), + [sym_identifier] = ACTIONS(1317), [sym_comment] = ACTIONS(121), }, - [505] = { - [sym_declaration] = STATE(506), - [sym__declaration_specifiers] = STATE(508), + [506] = { + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [sym_function_specifier] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1321), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1321), + [sym_number_literal] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1321), + [sym_string_literal] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), + [sym_comment] = ACTIONS(121), + }, + [507] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [508] = { + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_typedef] = ACTIONS(1329), + [anon_sym_auto] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_restrict] = ACTIONS(1329), + [anon_sym_volatile] = ACTIONS(1329), + [sym_function_specifier] = ACTIONS(1329), + [anon_sym_unsigned] = ACTIONS(1329), + [anon_sym_long] = ACTIONS(1329), + [anon_sym_short] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_goto] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1329), + [sym_char_literal] = ACTIONS(1329), + [sym_string_literal] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1331), + [sym_comment] = ACTIONS(121), + }, + [509] = { + [sym_declaration] = STATE(510), + [sym__declaration_specifiers] = STATE(512), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(509), + [sym__type_specifier] = STATE(513), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(510), + [sym__expression] = STATE(514), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -27673,13 +28105,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1333), [anon_sym_extern] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(843), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -27694,22 +28127,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1317), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1335), [sym_comment] = ACTIONS(121), }, - [506] = { - [sym__expression] = STATE(529), + [510] = { + [sym__expression] = STATE(533), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -27726,66 +28159,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [507] = { - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [511] = { + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_identifier] = ACTIONS(198), [sym_comment] = ACTIONS(121), }, - [508] = { - [sym__type_specifier] = STATE(527), + [512] = { + [sym__type_specifier] = STATE(531), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), @@ -27801,8 +28235,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [509] = { - [sym__declarator] = STATE(488), + [513] = { + [sym__declarator] = STATE(492), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), @@ -27812,48 +28246,48 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [510] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [514] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [511] = { - [sym__expression] = STATE(513), + [515] = { + [sym__expression] = STATE(517), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -27870,25 +28304,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [512] = { - [sym__expression] = STATE(524), + [516] = { + [sym__expression] = STATE(528), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -27905,65 +28340,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [513] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [517] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [514] = { - [sym__expression] = STATE(516), + [518] = { + [sym__expression] = STATE(520), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -27980,144 +28416,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [515] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(522), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), - [sym_conditional_expression] = STATE(53), - [sym_assignment_expression] = STATE(53), - [sym_pointer_expression] = STATE(53), - [sym_logical_expression] = STATE(53), - [sym_bitwise_expression] = STATE(53), - [sym_equality_expression] = STATE(53), - [sym_relational_expression] = STATE(53), - [sym_shift_expression] = STATE(53), - [sym_math_expression] = STATE(53), - [sym_cast_expression] = STATE(53), - [sym_sizeof_expression] = STATE(53), - [sym_subscript_expression] = STATE(53), - [sym_call_expression] = STATE(53), - [sym_field_expression] = STATE(53), - [sym_compound_literal_expression] = STATE(53), - [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), - [sym_comment] = ACTIONS(121), - }, - [516] = { - [aux_sym_for_statement_repeat1] = STATE(518), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [517] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(521), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [519] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(526), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -28134,57 +28467,95 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, - [518] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1333), + [520] = { + [aux_sym_for_statement_repeat1] = STATE(522), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [519] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(520), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [521] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(525), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -28201,193 +28572,58 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), - [sym_comment] = ACTIONS(121), - }, - [520] = { - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [sym_function_specifier] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_switch] = ACTIONS(1337), - [anon_sym_case] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_goto] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_sizeof] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1337), - [sym_char_literal] = ACTIONS(1337), - [sym_string_literal] = ACTIONS(1337), - [sym_identifier] = ACTIONS(1339), - [sym_comment] = ACTIONS(121), - }, - [521] = { - [anon_sym_LPAREN] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [sym_function_specifier] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_else] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_case] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1343), - [sym_char_literal] = ACTIONS(1343), - [sym_string_literal] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, [522] = { - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [sym_function_specifier] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_else] = ACTIONS(1349), - [anon_sym_switch] = ACTIONS(1349), - [anon_sym_case] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_goto] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), - [anon_sym_sizeof] = ACTIONS(1349), - [sym_number_literal] = ACTIONS(1349), - [sym_char_literal] = ACTIONS(1349), - [sym_string_literal] = ACTIONS(1349), - [sym_identifier] = ACTIONS(1351), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1351), [sym_comment] = ACTIONS(121), }, [523] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(526), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(524), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -28404,83 +28640,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, [524] = { - [aux_sym_for_statement_repeat1] = STATE(525), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [525] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1331), - [sym_comment] = ACTIONS(121), - }, - [526] = { [anon_sym_LPAREN] = ACTIONS(1353), [anon_sym_SEMI] = ACTIONS(1353), [anon_sym_extern] = ACTIONS(1355), @@ -28527,19 +28717,270 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1357), [sym_comment] = ACTIONS(121), }, + [525] = { + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [sym_function_specifier] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1361), + [sym_char_literal] = ACTIONS(1361), + [sym_string_literal] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), + [sym_comment] = ACTIONS(121), + }, + [526] = { + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_typedef] = ACTIONS(1367), + [anon_sym_auto] = ACTIONS(1367), + [anon_sym_register] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_restrict] = ACTIONS(1367), + [anon_sym_volatile] = ACTIONS(1367), + [sym_function_specifier] = ACTIONS(1367), + [anon_sym_unsigned] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_enum] = ACTIONS(1367), + [anon_sym_struct] = ACTIONS(1367), + [anon_sym_union] = ACTIONS(1367), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1367), + [anon_sym_default] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_goto] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1367), + [sym_number_literal] = ACTIONS(1367), + [sym_char_literal] = ACTIONS(1367), + [sym_string_literal] = ACTIONS(1367), + [sym_identifier] = ACTIONS(1369), + [sym_comment] = ACTIONS(121), + }, [527] = { - [sym__declarator] = STATE(491), + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(530), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(53), + [sym_assignment_expression] = STATE(53), + [sym_pointer_expression] = STATE(53), + [sym_logical_expression] = STATE(53), + [sym_bitwise_expression] = STATE(53), + [sym_equality_expression] = STATE(53), + [sym_relational_expression] = STATE(53), + [sym_shift_expression] = STATE(53), + [sym_math_expression] = STATE(53), + [sym_cast_expression] = STATE(53), + [sym_sizeof_expression] = STATE(53), + [sym_subscript_expression] = STATE(53), + [sym_call_expression] = STATE(53), + [sym_field_expression] = STATE(53), + [sym_compound_literal_expression] = STATE(53), + [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), + [sym_comment] = ACTIONS(121), + }, + [528] = { + [aux_sym_for_statement_repeat1] = STATE(529), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [529] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1349), + [sym_comment] = ACTIONS(121), + }, + [530] = { + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1373), + [anon_sym_auto] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_restrict] = ACTIONS(1373), + [anon_sym_volatile] = ACTIONS(1373), + [sym_function_specifier] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_else] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_sizeof] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1373), + [sym_char_literal] = ACTIONS(1373), + [sym_string_literal] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), + [sym_comment] = ACTIONS(121), + }, + [531] = { + [sym__declarator] = STATE(495), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym_init_declarator] = STATE(492), + [sym_init_declarator] = STATE(496), [anon_sym_LPAREN] = ACTIONS(220), [anon_sym_STAR] = ACTIONS(289), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [528] = { - [sym__expression] = STATE(531), + [532] = { + [sym__expression] = STATE(535), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -28556,80 +28997,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [529] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [533] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [530] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(533), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [534] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(537), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -28646,139 +29088,140 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, - [531] = { - [aux_sym_for_statement_repeat1] = STATE(532), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [535] = { + [aux_sym_for_statement_repeat1] = STATE(536), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [532] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1329), + [536] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1347), [sym_comment] = ACTIONS(121), }, - [533] = { - [anon_sym_LPAREN] = ACTIONS(1361), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1361), - [anon_sym_RBRACE] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1361), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1363), - [anon_sym_auto] = ACTIONS(1363), - [anon_sym_register] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_restrict] = ACTIONS(1363), - [anon_sym_volatile] = ACTIONS(1363), - [sym_function_specifier] = ACTIONS(1363), - [anon_sym_unsigned] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_enum] = ACTIONS(1363), - [anon_sym_struct] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_else] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_case] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_goto] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_DASH_DASH] = ACTIONS(1361), - [anon_sym_PLUS_PLUS] = ACTIONS(1361), - [anon_sym_sizeof] = ACTIONS(1363), - [sym_number_literal] = ACTIONS(1363), - [sym_char_literal] = ACTIONS(1363), - [sym_string_literal] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1365), + [537] = { + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1381), + [anon_sym_auto] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_restrict] = ACTIONS(1381), + [anon_sym_volatile] = ACTIONS(1381), + [sym_function_specifier] = ACTIONS(1381), + [anon_sym_unsigned] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_case] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1381), + [sym_number_literal] = ACTIONS(1381), + [sym_char_literal] = ACTIONS(1381), + [sym_string_literal] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1383), [sym_comment] = ACTIONS(121), }, - [534] = { - [anon_sym_LPAREN] = ACTIONS(1367), + [538] = { + [anon_sym_LPAREN] = ACTIONS(1385), [sym_comment] = ACTIONS(121), }, - [535] = { - [anon_sym_LPAREN] = ACTIONS(1369), + [539] = { + [anon_sym_LPAREN] = ACTIONS(1387), [sym_comment] = ACTIONS(121), }, - [536] = { - [sym__expression] = STATE(610), + [540] = { + [sym__expression] = STATE(614), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -28795,86 +29238,87 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [537] = { - [anon_sym_COLON] = ACTIONS(1371), + [541] = { + [anon_sym_COLON] = ACTIONS(1389), [sym_comment] = ACTIONS(121), }, - [538] = { - [anon_sym_LPAREN] = ACTIONS(1373), + [542] = { + [anon_sym_LPAREN] = ACTIONS(1391), [sym_comment] = ACTIONS(121), }, - [539] = { - [anon_sym_LPAREN] = ACTIONS(1375), + [543] = { + [anon_sym_LPAREN] = ACTIONS(1393), [sym_comment] = ACTIONS(121), }, - [540] = { - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(1377), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [544] = { + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COLON] = ACTIONS(1395), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, - [541] = { - [anon_sym_while] = ACTIONS(1379), + [545] = { + [anon_sym_while] = ACTIONS(1397), [sym_comment] = ACTIONS(121), }, - [542] = { - [anon_sym_LPAREN] = ACTIONS(1381), + [546] = { + [anon_sym_LPAREN] = ACTIONS(1399), [sym_comment] = ACTIONS(121), }, - [543] = { - [sym__expression] = STATE(550), + [547] = { + [sym__expression] = STATE(554), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -28891,31 +29335,32 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [544] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [548] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -28932,12 +29377,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(581), + [sym_type_name] = STATE(585), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -28947,22 +29393,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [545] = { - [sym__expression] = STATE(393), + [549] = { + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -28979,24 +29425,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [546] = { - [sym__expression] = STATE(392), + [550] = { + [sym__expression] = STATE(396), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29013,24 +29460,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [547] = { - [sym__expression] = STATE(391), + [551] = { + [sym__expression] = STATE(395), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29047,24 +29495,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [548] = { - [sym__expression] = STATE(390), + [552] = { + [sym__expression] = STATE(394), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29081,24 +29530,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [549] = { - [sym__expression] = STATE(578), + [553] = { + [sym__expression] = STATE(582), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29115,111 +29565,112 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [550] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [554] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [551] = { - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_typedef] = ACTIONS(1431), - [anon_sym_auto] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_restrict] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(1431), - [sym_function_specifier] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_case] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_goto] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [sym_string_literal] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), + [555] = { + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_auto] = ACTIONS(1449), + [anon_sym_register] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_restrict] = ACTIONS(1449), + [anon_sym_volatile] = ACTIONS(1449), + [sym_function_specifier] = ACTIONS(1449), + [anon_sym_unsigned] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_case] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_goto] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_sizeof] = ACTIONS(1449), + [sym_number_literal] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [sym_string_literal] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), [sym_comment] = ACTIONS(121), }, - [552] = { - [sym__expression] = STATE(74), + [556] = { + [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29236,24 +29687,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [553] = { - [sym__expression] = STATE(573), + [557] = { + [sym__expression] = STATE(577), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29270,24 +29722,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [554] = { - [sym__expression] = STATE(574), + [558] = { + [sym__expression] = STATE(578), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29304,24 +29757,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [555] = { - [sym__expression] = STATE(572), + [559] = { + [sym__expression] = STATE(576), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29338,24 +29792,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [556] = { - [sym__expression] = STATE(571), + [560] = { + [sym__expression] = STATE(575), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29372,24 +29827,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [557] = { - [sym__expression] = STATE(570), + [561] = { + [sym__expression] = STATE(574), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29406,24 +29862,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [558] = { - [sym__expression] = STATE(569), + [562] = { + [sym__expression] = STATE(573), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29440,24 +29897,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [559] = { - [sym__expression] = STATE(568), + [563] = { + [sym__expression] = STATE(572), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29474,24 +29932,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [560] = { - [sym__expression] = STATE(567), + [564] = { + [sym__expression] = STATE(571), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29508,24 +29967,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [561] = { - [sym__expression] = STATE(566), + [565] = { + [sym__expression] = STATE(570), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29542,24 +30002,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [562] = { - [sym__expression] = STATE(565), + [566] = { + [sym__expression] = STATE(569), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29576,24 +30037,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [563] = { - [sym__expression] = STATE(564), + [567] = { + [sym__expression] = STATE(568), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -29610,67 +30072,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [564] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_CARET_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [565] = { - [anon_sym_LPAREN] = ACTIONS(397), + [568] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_RPAREN] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(467), [anon_sym_QMARK] = ACTIONS(465), [anon_sym_STAR_EQ] = ACTIONS(465), @@ -29696,21 +30119,21 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(465), [anon_sym_LT_LT] = ACTIONS(467), [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [566] = { - [anon_sym_LPAREN] = ACTIONS(397), + [569] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_RPAREN] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(471), [anon_sym_QMARK] = ACTIONS(469), [anon_sym_STAR_EQ] = ACTIONS(469), @@ -29734,23 +30157,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(471), [anon_sym_LT_EQ] = ACTIONS(469), [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [567] = { - [anon_sym_LPAREN] = ACTIONS(397), + [570] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_RPAREN] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(475), [anon_sym_QMARK] = ACTIONS(473), [anon_sym_STAR_EQ] = ACTIONS(473), @@ -29770,27 +30193,27 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(475), [anon_sym_EQ_EQ] = ACTIONS(473), [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [568] = { - [anon_sym_LPAREN] = ACTIONS(397), + [571] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(479), [anon_sym_QMARK] = ACTIONS(477), [anon_sym_STAR_EQ] = ACTIONS(477), @@ -29803,74 +30226,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(477), [anon_sym_CARET_EQ] = ACTIONS(477), [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(479), [anon_sym_PIPE_PIPE] = ACTIONS(477), [anon_sym_AMP_AMP] = ACTIONS(477), [anon_sym_PIPE] = ACTIONS(479), [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(121), - }, - [569] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [570] = { - [anon_sym_LPAREN] = ACTIONS(397), + [572] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -29883,34 +30266,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1427), [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [571] = { - [anon_sym_LPAREN] = ACTIONS(397), + [573] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), [anon_sym_EQ] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(481), [anon_sym_STAR_EQ] = ACTIONS(481), @@ -29923,151 +30306,231 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(481), [anon_sym_CARET_EQ] = ACTIONS(481), [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1427), [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [572] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [574] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [573] = { - [anon_sym_LPAREN] = ACTIONS(397), + [575] = { + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(487), [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [574] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [576] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [575] = { - [sym__expression] = STATE(576), + [577] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [578] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(1453), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [579] = { + [sym__expression] = STATE(580), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30084,71 +30547,72 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [576] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [580] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [577] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [581] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30165,12 +30629,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(579), + [sym_type_name] = STATE(583), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -30180,66 +30645,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [578] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [582] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [579] = { - [anon_sym_RPAREN] = ACTIONS(1437), + [583] = { + [anon_sym_RPAREN] = ACTIONS(1455), [sym_comment] = ACTIONS(121), }, - [580] = { - [sym__expression] = STATE(329), + [584] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30256,60 +30721,61 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [581] = { - [anon_sym_RPAREN] = ACTIONS(1443), + [585] = { + [anon_sym_RPAREN] = ACTIONS(1461), [sym_comment] = ACTIONS(121), }, - [582] = { - [sym__expression] = STATE(329), + [586] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30326,41 +30792,42 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [583] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(497), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [587] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(501), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30377,46 +30844,47 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [584] = { - [sym_declaration] = STATE(585), - [sym__declaration_specifiers] = STATE(508), + [588] = { + [sym_declaration] = STATE(589), + [sym__declaration_specifiers] = STATE(512), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(509), + [sym__type_specifier] = STATE(513), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(586), + [sym__expression] = STATE(590), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30433,13 +30901,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1463), [anon_sym_extern] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(843), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -30454,22 +30923,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1317), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1335), [sym_comment] = ACTIONS(121), }, - [585] = { - [sym__expression] = STATE(600), + [589] = { + [sym__expression] = STATE(604), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30486,65 +30955,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [586] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [590] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [587] = { - [sym__expression] = STATE(589), + [591] = { + [sym__expression] = STATE(593), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30561,25 +31031,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [588] = { - [sym__expression] = STATE(597), + [592] = { + [sym__expression] = STATE(601), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30596,65 +31067,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [589] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [593] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [590] = { - [sym__expression] = STATE(592), + [594] = { + [sym__expression] = STATE(596), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30671,40 +31143,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [591] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(522), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [595] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(526), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30721,94 +31194,95 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [592] = { - [aux_sym_for_statement_repeat1] = STATE(594), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [596] = { + [aux_sym_for_statement_repeat1] = STATE(598), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [593] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(521), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [597] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(525), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30825,57 +31299,58 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [594] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1461), + [598] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1479), [sym_comment] = ACTIONS(121), }, - [595] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(520), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [599] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(524), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30892,52 +31367,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [596] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(526), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [600] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(530), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -30954,84 +31430,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [597] = { - [aux_sym_for_statement_repeat1] = STATE(598), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [601] = { + [aux_sym_for_statement_repeat1] = STATE(602), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [598] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1459), + [602] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1477), [sym_comment] = ACTIONS(121), }, - [599] = { - [sym__expression] = STATE(602), + [603] = { + [sym__expression] = STATE(606), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31048,80 +31525,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [600] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [604] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [601] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(533), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [605] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(537), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31138,84 +31616,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [602] = { - [aux_sym_for_statement_repeat1] = STATE(603), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [606] = { + [aux_sym_for_statement_repeat1] = STATE(607), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [603] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1457), + [607] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1475), [sym_comment] = ACTIONS(121), }, - [604] = { - [sym__expression] = STATE(605), + [608] = { + [sym__expression] = STATE(609), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31232,79 +31711,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [605] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [609] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [606] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(607), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [610] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(611), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31321,99 +31801,100 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [607] = { - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_typedef] = ACTIONS(1469), - [anon_sym_auto] = ACTIONS(1469), - [anon_sym_register] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_restrict] = ACTIONS(1469), - [anon_sym_volatile] = ACTIONS(1469), - [sym_function_specifier] = ACTIONS(1469), - [anon_sym_unsigned] = ACTIONS(1469), - [anon_sym_long] = ACTIONS(1469), - [anon_sym_short] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_else] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_case] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_goto] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1469), - [sym_number_literal] = ACTIONS(1469), - [sym_char_literal] = ACTIONS(1469), - [sym_string_literal] = ACTIONS(1469), - [sym_identifier] = ACTIONS(1471), + [611] = { + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1487), + [anon_sym_typedef] = ACTIONS(1487), + [anon_sym_auto] = ACTIONS(1487), + [anon_sym_register] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_restrict] = ACTIONS(1487), + [anon_sym_volatile] = ACTIONS(1487), + [sym_function_specifier] = ACTIONS(1487), + [anon_sym_unsigned] = ACTIONS(1487), + [anon_sym_long] = ACTIONS(1487), + [anon_sym_short] = ACTIONS(1487), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_struct] = ACTIONS(1487), + [anon_sym_union] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_else] = ACTIONS(1487), + [anon_sym_switch] = ACTIONS(1487), + [anon_sym_case] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_do] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_goto] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1487), + [sym_char_literal] = ACTIONS(1487), + [sym_string_literal] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(121), }, - [608] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(609), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [612] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(613), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31430,139 +31911,140 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [609] = { - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_typedef] = ACTIONS(1475), - [anon_sym_auto] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_restrict] = ACTIONS(1475), - [anon_sym_volatile] = ACTIONS(1475), - [sym_function_specifier] = ACTIONS(1475), - [anon_sym_unsigned] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1475), - [anon_sym_struct] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_else] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_case] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_goto] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_sizeof] = ACTIONS(1475), - [sym_number_literal] = ACTIONS(1475), - [sym_char_literal] = ACTIONS(1475), - [sym_string_literal] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), + [613] = { + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_extern] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_typedef] = ACTIONS(1493), + [anon_sym_auto] = ACTIONS(1493), + [anon_sym_register] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_restrict] = ACTIONS(1493), + [anon_sym_volatile] = ACTIONS(1493), + [sym_function_specifier] = ACTIONS(1493), + [anon_sym_unsigned] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_else] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_goto] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [sym_number_literal] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [sym_string_literal] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), [sym_comment] = ACTIONS(121), }, - [610] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [614] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [611] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(612), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [615] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(616), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31579,84 +32061,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [612] = { - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_typedef] = ACTIONS(1483), - [anon_sym_auto] = ACTIONS(1483), - [anon_sym_register] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_restrict] = ACTIONS(1483), - [anon_sym_volatile] = ACTIONS(1483), - [sym_function_specifier] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_else] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_case] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_goto] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [sym_number_literal] = ACTIONS(1483), - [sym_char_literal] = ACTIONS(1483), - [sym_string_literal] = ACTIONS(1483), - [sym_identifier] = ACTIONS(1485), + [616] = { + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_typedef] = ACTIONS(1501), + [anon_sym_auto] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_restrict] = ACTIONS(1501), + [anon_sym_volatile] = ACTIONS(1501), + [sym_function_specifier] = ACTIONS(1501), + [anon_sym_unsigned] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_enum] = ACTIONS(1501), + [anon_sym_struct] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_case] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_goto] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_sizeof] = ACTIONS(1501), + [sym_number_literal] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [sym_string_literal] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), [sym_comment] = ACTIONS(121), }, - [613] = { - [sym__expression] = STATE(614), + [617] = { + [sym__expression] = STATE(618), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31673,79 +32156,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [614] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [618] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [615] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(616), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [619] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(620), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31762,84 +32246,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [616] = { - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_typedef] = ACTIONS(1491), - [anon_sym_auto] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_restrict] = ACTIONS(1491), - [anon_sym_volatile] = ACTIONS(1491), - [sym_function_specifier] = ACTIONS(1491), - [anon_sym_unsigned] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_goto] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_sizeof] = ACTIONS(1491), - [sym_number_literal] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [sym_string_literal] = ACTIONS(1491), - [sym_identifier] = ACTIONS(1493), + [620] = { + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_typedef] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [sym_function_specifier] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_goto] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_sizeof] = ACTIONS(1509), + [sym_number_literal] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [sym_string_literal] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1511), [sym_comment] = ACTIONS(121), }, - [617] = { - [sym__expression] = STATE(618), + [621] = { + [sym__expression] = STATE(622), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31856,79 +32341,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [618] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [622] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [619] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(627), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [623] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(631), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -31945,45 +32431,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [620] = { - [anon_sym_LPAREN] = ACTIONS(1511), + [624] = { + [anon_sym_LPAREN] = ACTIONS(1529), [sym_comment] = ACTIONS(121), }, - [621] = { - [anon_sym_LPAREN] = ACTIONS(1513), + [625] = { + [anon_sym_LPAREN] = ACTIONS(1531), [sym_comment] = ACTIONS(121), }, - [622] = { - [sym__expression] = STATE(655), + [626] = { + [sym__expression] = STATE(659), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32000,98 +32487,99 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [623] = { - [anon_sym_COLON] = ACTIONS(1515), + [627] = { + [anon_sym_COLON] = ACTIONS(1533), [sym_comment] = ACTIONS(121), }, - [624] = { - [anon_sym_LPAREN] = ACTIONS(1517), + [628] = { + [anon_sym_LPAREN] = ACTIONS(1535), [sym_comment] = ACTIONS(121), }, - [625] = { - [anon_sym_LPAREN] = ACTIONS(1519), + [629] = { + [anon_sym_LPAREN] = ACTIONS(1537), [sym_comment] = ACTIONS(121), }, - [626] = { - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(1521), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [630] = { + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COLON] = ACTIONS(1539), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, - [627] = { - [anon_sym_else] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1525), + [631] = { + [anon_sym_else] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1543), [sym_comment] = ACTIONS(121), }, - [628] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(629), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [632] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(633), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32108,99 +32596,100 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1225), [sym_comment] = ACTIONS(121), }, - [629] = { - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_auto] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [sym_function_specifier] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1529), - [sym_char_literal] = ACTIONS(1529), - [sym_string_literal] = ACTIONS(1529), - [sym_identifier] = ACTIONS(1531), + [633] = { + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1547), + [anon_sym_typedef] = ACTIONS(1547), + [anon_sym_auto] = ACTIONS(1547), + [anon_sym_register] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [anon_sym_restrict] = ACTIONS(1547), + [anon_sym_volatile] = ACTIONS(1547), + [sym_function_specifier] = ACTIONS(1547), + [anon_sym_unsigned] = ACTIONS(1547), + [anon_sym_long] = ACTIONS(1547), + [anon_sym_short] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1547), + [anon_sym_struct] = ACTIONS(1547), + [anon_sym_union] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1547), + [anon_sym_case] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_do] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_goto] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_sizeof] = ACTIONS(1547), + [sym_number_literal] = ACTIONS(1547), + [sym_char_literal] = ACTIONS(1547), + [sym_string_literal] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), [sym_comment] = ACTIONS(121), }, - [630] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(497), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [634] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(501), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32217,46 +32706,47 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [631] = { - [sym_declaration] = STATE(632), - [sym__declaration_specifiers] = STATE(508), + [635] = { + [sym_declaration] = STATE(636), + [sym__declaration_specifiers] = STATE(512), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(509), + [sym__type_specifier] = STATE(513), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(633), + [sym__expression] = STATE(637), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32273,13 +32763,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1551), [anon_sym_extern] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(843), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -32294,22 +32785,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1317), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1335), [sym_comment] = ACTIONS(121), }, - [632] = { - [sym__expression] = STATE(647), + [636] = { + [sym__expression] = STATE(651), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32326,65 +32817,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [633] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [637] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [634] = { - [sym__expression] = STATE(636), + [638] = { + [sym__expression] = STATE(640), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32401,25 +32893,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [635] = { - [sym__expression] = STATE(644), + [639] = { + [sym__expression] = STATE(648), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32436,65 +32929,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [636] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [640] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [637] = { - [sym__expression] = STATE(639), + [641] = { + [sym__expression] = STATE(643), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32511,40 +33005,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [638] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(522), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [642] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(526), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32561,94 +33056,95 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [639] = { - [aux_sym_for_statement_repeat1] = STATE(641), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [643] = { + [aux_sym_for_statement_repeat1] = STATE(645), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [640] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(521), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [644] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(525), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32665,57 +33161,58 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [641] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1549), + [645] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1567), [sym_comment] = ACTIONS(121), }, - [642] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(520), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [646] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(524), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32732,52 +33229,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [643] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(526), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [647] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(530), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32794,84 +33292,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), - }, - [644] = { - [aux_sym_for_statement_repeat1] = STATE(645), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + }, + [648] = { + [aux_sym_for_statement_repeat1] = STATE(649), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [645] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1547), + [649] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1565), [sym_comment] = ACTIONS(121), }, - [646] = { - [sym__expression] = STATE(649), + [650] = { + [sym__expression] = STATE(653), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32888,80 +33387,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [647] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [651] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [648] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(533), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [652] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(537), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -32978,84 +33478,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [649] = { - [aux_sym_for_statement_repeat1] = STATE(650), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [653] = { + [aux_sym_for_statement_repeat1] = STATE(654), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [650] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1545), + [654] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1563), [sym_comment] = ACTIONS(121), }, - [651] = { - [sym__expression] = STATE(652), + [655] = { + [sym__expression] = STATE(656), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33072,79 +33573,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [652] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [656] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [653] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(607), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [657] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(611), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33161,52 +33663,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [654] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(609), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [658] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(613), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33223,92 +33726,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [655] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(1555), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [659] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(1573), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [656] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(612), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [660] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(616), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33325,37 +33829,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [657] = { - [sym__expression] = STATE(658), + [661] = { + [sym__expression] = STATE(662), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33372,79 +33877,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [658] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [662] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [659] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(616), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [663] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(620), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33461,37 +33967,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [660] = { - [sym__expression] = STATE(661), + [664] = { + [sym__expression] = STATE(665), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33508,79 +34015,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [661] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [665] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [662] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(663), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [666] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(667), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33597,57 +34105,58 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [663] = { - [anon_sym_else] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1525), + [667] = { + [anon_sym_else] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1543), [sym_comment] = ACTIONS(121), }, - [664] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(629), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [668] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(633), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33664,37 +34173,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(121), }, - [665] = { - [sym__expression] = STATE(666), + [669] = { + [sym__expression] = STATE(670), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33711,79 +34221,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [666] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [670] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [667] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(607), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [671] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(611), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33800,52 +34311,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, - [668] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(609), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [672] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(613), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33862,92 +34374,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, - [669] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(1565), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [673] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(1583), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [670] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(612), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [674] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(616), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -33964,37 +34477,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, - [671] = { - [sym__expression] = STATE(672), + [675] = { + [sym__expression] = STATE(676), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34011,79 +34525,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [672] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [676] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [673] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(616), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [677] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(620), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34100,37 +34615,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, - [674] = { - [sym__expression] = STATE(675), + [678] = { + [sym__expression] = STATE(679), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34147,79 +34663,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [675] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [679] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [676] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(684), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [680] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(688), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34236,45 +34753,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [677] = { - [anon_sym_LPAREN] = ACTIONS(1585), + [681] = { + [anon_sym_LPAREN] = ACTIONS(1603), [sym_comment] = ACTIONS(121), }, - [678] = { - [anon_sym_LPAREN] = ACTIONS(1587), + [682] = { + [anon_sym_LPAREN] = ACTIONS(1605), [sym_comment] = ACTIONS(121), }, - [679] = { - [sym__expression] = STATE(711), + [683] = { + [sym__expression] = STATE(715), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34291,140 +34809,141 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [680] = { - [anon_sym_COLON] = ACTIONS(1589), + [684] = { + [anon_sym_COLON] = ACTIONS(1607), [sym_comment] = ACTIONS(121), }, - [681] = { - [anon_sym_LPAREN] = ACTIONS(1591), + [685] = { + [anon_sym_LPAREN] = ACTIONS(1609), [sym_comment] = ACTIONS(121), }, - [682] = { - [anon_sym_LPAREN] = ACTIONS(1593), + [686] = { + [anon_sym_LPAREN] = ACTIONS(1611), [sym_comment] = ACTIONS(121), }, - [683] = { - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(1595), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [687] = { + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COLON] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, - [684] = { - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_auto] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [sym_function_specifier] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1597), - [sym_char_literal] = ACTIONS(1597), - [sym_string_literal] = ACTIONS(1597), - [sym_identifier] = ACTIONS(1601), + [688] = { + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_extern] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1615), + [anon_sym_typedef] = ACTIONS(1615), + [anon_sym_auto] = ACTIONS(1615), + [anon_sym_register] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1615), + [anon_sym_restrict] = ACTIONS(1615), + [anon_sym_volatile] = ACTIONS(1615), + [sym_function_specifier] = ACTIONS(1615), + [anon_sym_unsigned] = ACTIONS(1615), + [anon_sym_long] = ACTIONS(1615), + [anon_sym_short] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1615), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1615), + [anon_sym_else] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1615), + [anon_sym_case] = ACTIONS(1615), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1615), + [anon_sym_do] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1615), + [anon_sym_return] = ACTIONS(1615), + [anon_sym_break] = ACTIONS(1615), + [anon_sym_continue] = ACTIONS(1615), + [anon_sym_goto] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_sizeof] = ACTIONS(1615), + [sym_number_literal] = ACTIONS(1615), + [sym_char_literal] = ACTIONS(1615), + [sym_string_literal] = ACTIONS(1615), + [sym_identifier] = ACTIONS(1619), [sym_comment] = ACTIONS(121), }, - [685] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(629), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [689] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(633), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34441,52 +34960,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(121), }, - [686] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(497), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [690] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(501), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34503,46 +35023,47 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [687] = { - [sym_declaration] = STATE(688), - [sym__declaration_specifiers] = STATE(508), + [691] = { + [sym_declaration] = STATE(692), + [sym__declaration_specifiers] = STATE(512), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(509), + [sym__type_specifier] = STATE(513), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(689), + [sym__expression] = STATE(693), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34559,13 +35080,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1621), [anon_sym_extern] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(843), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -34580,22 +35102,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1317), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1335), [sym_comment] = ACTIONS(121), }, - [688] = { - [sym__expression] = STATE(703), + [692] = { + [sym__expression] = STATE(707), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34612,65 +35134,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [689] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [693] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [690] = { - [sym__expression] = STATE(692), + [694] = { + [sym__expression] = STATE(696), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34687,25 +35210,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [691] = { - [sym__expression] = STATE(700), + [695] = { + [sym__expression] = STATE(704), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34722,65 +35246,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [692] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [696] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [693] = { - [sym__expression] = STATE(695), + [697] = { + [sym__expression] = STATE(699), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34797,40 +35322,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [694] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(522), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [698] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(526), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34847,94 +35373,95 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [695] = { - [aux_sym_for_statement_repeat1] = STATE(697), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [699] = { + [aux_sym_for_statement_repeat1] = STATE(701), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [696] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(521), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [700] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(525), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -34951,57 +35478,58 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [697] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1619), + [701] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1637), [sym_comment] = ACTIONS(121), }, - [698] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(520), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [702] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(524), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35018,52 +35546,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [699] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(526), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [703] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(530), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35080,84 +35609,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [700] = { - [aux_sym_for_statement_repeat1] = STATE(701), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [704] = { + [aux_sym_for_statement_repeat1] = STATE(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [701] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1617), + [705] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1635), [sym_comment] = ACTIONS(121), }, - [702] = { - [sym__expression] = STATE(705), + [706] = { + [sym__expression] = STATE(709), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35174,80 +35704,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [703] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [707] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [704] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(533), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [708] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(537), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35264,84 +35795,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [705] = { - [aux_sym_for_statement_repeat1] = STATE(706), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [709] = { + [aux_sym_for_statement_repeat1] = STATE(710), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [706] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(1615), + [710] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(1633), [sym_comment] = ACTIONS(121), }, - [707] = { - [sym__expression] = STATE(708), + [711] = { + [sym__expression] = STATE(712), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35358,79 +35890,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [708] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [712] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [709] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(607), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [713] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(611), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35447,52 +35980,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [710] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(609), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [714] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(613), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35509,92 +36043,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [711] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(1625), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [715] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [712] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(612), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [716] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(616), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35611,37 +36146,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [713] = { - [sym__expression] = STATE(714), + [717] = { + [sym__expression] = STATE(718), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35658,79 +36194,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [714] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [718] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [715] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(616), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [719] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(620), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35747,37 +36284,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [716] = { - [sym__expression] = STATE(717), + [720] = { + [sym__expression] = STATE(721), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35794,79 +36332,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [717] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [721] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [718] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(719), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [722] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(723), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35883,99 +36422,100 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), - [sym_comment] = ACTIONS(121), - }, - [719] = { - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_auto] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [sym_function_specifier] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1597), - [sym_char_literal] = ACTIONS(1597), - [sym_string_literal] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [720] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(629), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [723] = { + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_extern] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1615), + [anon_sym_typedef] = ACTIONS(1615), + [anon_sym_auto] = ACTIONS(1615), + [anon_sym_register] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1615), + [anon_sym_restrict] = ACTIONS(1615), + [anon_sym_volatile] = ACTIONS(1615), + [sym_function_specifier] = ACTIONS(1615), + [anon_sym_unsigned] = ACTIONS(1615), + [anon_sym_long] = ACTIONS(1615), + [anon_sym_short] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1615), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1615), + [anon_sym_else] = ACTIONS(1649), + [anon_sym_switch] = ACTIONS(1615), + [anon_sym_case] = ACTIONS(1615), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1615), + [anon_sym_do] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1615), + [anon_sym_return] = ACTIONS(1615), + [anon_sym_break] = ACTIONS(1615), + [anon_sym_continue] = ACTIONS(1615), + [anon_sym_goto] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_sizeof] = ACTIONS(1615), + [sym_number_literal] = ACTIONS(1615), + [sym_char_literal] = ACTIONS(1615), + [sym_string_literal] = ACTIONS(1615), + [sym_identifier] = ACTIONS(1619), + [sym_comment] = ACTIONS(121), + }, + [724] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(633), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -35992,50 +36532,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [721] = { - [sym__declarator] = STATE(722), + [725] = { + [sym__declarator] = STATE(726), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym_init_declarator] = STATE(492), + [sym_init_declarator] = STATE(496), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1275), [anon_sym_STAR] = ACTIONS(224), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [722] = { - [sym_compound_statement] = STATE(723), - [aux_sym_declaration_repeat1] = STATE(493), + [726] = { + [sym_compound_statement] = STATE(727), + [aux_sym_declaration_repeat1] = STATE(497), [anon_sym_LPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(279), [anon_sym_SEMI] = ACTIONS(299), @@ -36044,42 +36585,42 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(287), [sym_comment] = ACTIONS(121), }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(1633), - [anon_sym_POUNDinclude] = ACTIONS(1635), - [anon_sym_POUNDdefine] = ACTIONS(1635), - [anon_sym_POUNDifdef] = ACTIONS(1635), - [anon_sym_POUNDifndef] = ACTIONS(1635), - [anon_sym_POUNDendif] = ACTIONS(1635), - [anon_sym_POUNDelse] = ACTIONS(1635), - [sym_preproc_directive] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1635), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1635), - [anon_sym_typedef] = ACTIONS(1635), - [anon_sym_auto] = ACTIONS(1635), - [anon_sym_register] = ACTIONS(1635), - [anon_sym_const] = ACTIONS(1635), - [anon_sym_restrict] = ACTIONS(1635), - [anon_sym_volatile] = ACTIONS(1635), - [sym_function_specifier] = ACTIONS(1635), - [anon_sym_unsigned] = ACTIONS(1635), - [anon_sym_long] = ACTIONS(1635), - [anon_sym_short] = ACTIONS(1635), - [anon_sym_enum] = ACTIONS(1635), - [anon_sym_struct] = ACTIONS(1635), - [anon_sym_union] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1637), + [727] = { + [ts_builtin_sym_end] = ACTIONS(1651), + [anon_sym_POUNDinclude] = ACTIONS(1653), + [anon_sym_POUNDdefine] = ACTIONS(1653), + [anon_sym_POUNDifdef] = ACTIONS(1653), + [anon_sym_POUNDifndef] = ACTIONS(1653), + [anon_sym_POUNDendif] = ACTIONS(1653), + [anon_sym_POUNDelse] = ACTIONS(1653), + [sym_preproc_directive] = ACTIONS(1655), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [sym_function_specifier] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), [sym_comment] = ACTIONS(121), }, - [724] = { - [sym_function_definition] = STATE(726), - [sym_declaration] = STATE(726), - [sym__declaration_specifiers] = STATE(727), - [sym_declaration_list] = STATE(726), + [728] = { + [sym_function_definition] = STATE(730), + [sym_declaration] = STATE(730), + [sym__declaration_specifiers] = STATE(731), + [sym_declaration_list] = STATE(730), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(728), + [sym__type_specifier] = STATE(732), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), @@ -36088,7 +36629,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), [anon_sym_extern] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1657), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -36106,7 +36647,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [725] = { + [729] = { [sym__top_level_item] = STATE(16), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), @@ -36127,7 +36668,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_union_specifier] = STATE(21), [sym__empty_declaration] = STATE(17), [sym_macro_type_specifier] = STATE(21), - [aux_sym_translation_unit_repeat1] = STATE(731), + [aux_sym_translation_unit_repeat1] = STATE(735), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), [anon_sym_POUNDinclude] = ACTIONS(125), @@ -36136,7 +36677,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDifndef] = ACTIONS(129), [sym_preproc_directive] = ACTIONS(131), [anon_sym_extern] = ACTIONS(133), - [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1659), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -36154,36 +36695,36 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [726] = { - [ts_builtin_sym_end] = ACTIONS(1643), - [anon_sym_POUNDinclude] = ACTIONS(1645), - [anon_sym_POUNDdefine] = ACTIONS(1645), - [anon_sym_POUNDifdef] = ACTIONS(1645), - [anon_sym_POUNDifndef] = ACTIONS(1645), - [anon_sym_POUNDendif] = ACTIONS(1645), - [anon_sym_POUNDelse] = ACTIONS(1645), - [sym_preproc_directive] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_auto] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [sym_function_specifier] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1647), + [730] = { + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_POUNDinclude] = ACTIONS(1663), + [anon_sym_POUNDdefine] = ACTIONS(1663), + [anon_sym_POUNDifdef] = ACTIONS(1663), + [anon_sym_POUNDifndef] = ACTIONS(1663), + [anon_sym_POUNDendif] = ACTIONS(1663), + [anon_sym_POUNDelse] = ACTIONS(1663), + [sym_preproc_directive] = ACTIONS(1665), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_static] = ACTIONS(1663), + [anon_sym_typedef] = ACTIONS(1663), + [anon_sym_auto] = ACTIONS(1663), + [anon_sym_register] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [anon_sym_restrict] = ACTIONS(1663), + [anon_sym_volatile] = ACTIONS(1663), + [sym_function_specifier] = ACTIONS(1663), + [anon_sym_unsigned] = ACTIONS(1663), + [anon_sym_long] = ACTIONS(1663), + [anon_sym_short] = ACTIONS(1663), + [anon_sym_enum] = ACTIONS(1663), + [anon_sym_struct] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [sym_identifier] = ACTIONS(1665), [sym_comment] = ACTIONS(121), }, - [727] = { - [sym__type_specifier] = STATE(729), + [731] = { + [sym__type_specifier] = STATE(733), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), @@ -36199,7 +36740,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [728] = { + [732] = { [sym__declarator] = STATE(33), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), @@ -36210,46 +36751,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [729] = { - [sym__declarator] = STATE(722), + [733] = { + [sym__declarator] = STATE(726), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym_init_declarator] = STATE(492), + [sym_init_declarator] = STATE(496), [anon_sym_LPAREN] = ACTIONS(220), [anon_sym_STAR] = ACTIONS(224), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [730] = { - [ts_builtin_sym_end] = ACTIONS(1649), - [anon_sym_POUNDinclude] = ACTIONS(1651), - [anon_sym_POUNDdefine] = ACTIONS(1651), - [anon_sym_POUNDifdef] = ACTIONS(1651), - [anon_sym_POUNDifndef] = ACTIONS(1651), - [anon_sym_POUNDendif] = ACTIONS(1651), - [anon_sym_POUNDelse] = ACTIONS(1651), - [sym_preproc_directive] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_typedef] = ACTIONS(1651), - [anon_sym_auto] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_restrict] = ACTIONS(1651), - [anon_sym_volatile] = ACTIONS(1651), - [sym_function_specifier] = ACTIONS(1651), - [anon_sym_unsigned] = ACTIONS(1651), - [anon_sym_long] = ACTIONS(1651), - [anon_sym_short] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1651), - [anon_sym_union] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1653), + [734] = { + [ts_builtin_sym_end] = ACTIONS(1667), + [anon_sym_POUNDinclude] = ACTIONS(1669), + [anon_sym_POUNDdefine] = ACTIONS(1669), + [anon_sym_POUNDifdef] = ACTIONS(1669), + [anon_sym_POUNDifndef] = ACTIONS(1669), + [anon_sym_POUNDendif] = ACTIONS(1669), + [anon_sym_POUNDelse] = ACTIONS(1669), + [sym_preproc_directive] = ACTIONS(1671), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_typedef] = ACTIONS(1669), + [anon_sym_auto] = ACTIONS(1669), + [anon_sym_register] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_restrict] = ACTIONS(1669), + [anon_sym_volatile] = ACTIONS(1669), + [sym_function_specifier] = ACTIONS(1669), + [anon_sym_unsigned] = ACTIONS(1669), + [anon_sym_long] = ACTIONS(1669), + [anon_sym_short] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1669), + [anon_sym_union] = ACTIONS(1669), + [sym_identifier] = ACTIONS(1671), [sym_comment] = ACTIONS(121), }, - [731] = { + [735] = { [sym__top_level_item] = STATE(28), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), @@ -36278,7 +36819,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDifndef] = ACTIONS(129), [sym_preproc_directive] = ACTIONS(131), [anon_sym_extern] = ACTIONS(133), - [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1673), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -36296,63 +36837,63 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [732] = { - [ts_builtin_sym_end] = ACTIONS(1657), - [anon_sym_POUNDinclude] = ACTIONS(1659), - [anon_sym_POUNDdefine] = ACTIONS(1659), - [anon_sym_POUNDifdef] = ACTIONS(1659), - [anon_sym_POUNDifndef] = ACTIONS(1659), - [anon_sym_POUNDendif] = ACTIONS(1659), - [anon_sym_POUNDelse] = ACTIONS(1659), - [sym_preproc_directive] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_typedef] = ACTIONS(1659), - [anon_sym_auto] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_restrict] = ACTIONS(1659), - [anon_sym_volatile] = ACTIONS(1659), - [sym_function_specifier] = ACTIONS(1659), - [anon_sym_unsigned] = ACTIONS(1659), - [anon_sym_long] = ACTIONS(1659), - [anon_sym_short] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), + [736] = { + [ts_builtin_sym_end] = ACTIONS(1675), + [anon_sym_POUNDinclude] = ACTIONS(1677), + [anon_sym_POUNDdefine] = ACTIONS(1677), + [anon_sym_POUNDifdef] = ACTIONS(1677), + [anon_sym_POUNDifndef] = ACTIONS(1677), + [anon_sym_POUNDendif] = ACTIONS(1677), + [anon_sym_POUNDelse] = ACTIONS(1677), + [sym_preproc_directive] = ACTIONS(1679), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_typedef] = ACTIONS(1677), + [anon_sym_auto] = ACTIONS(1677), + [anon_sym_register] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_restrict] = ACTIONS(1677), + [anon_sym_volatile] = ACTIONS(1677), + [sym_function_specifier] = ACTIONS(1677), + [anon_sym_unsigned] = ACTIONS(1677), + [anon_sym_long] = ACTIONS(1677), + [anon_sym_short] = ACTIONS(1677), + [anon_sym_enum] = ACTIONS(1677), + [anon_sym_struct] = ACTIONS(1677), + [anon_sym_union] = ACTIONS(1677), + [sym_identifier] = ACTIONS(1679), [sym_comment] = ACTIONS(121), }, - [733] = { - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_POUNDinclude] = ACTIONS(1665), - [anon_sym_POUNDdefine] = ACTIONS(1665), - [anon_sym_POUNDifdef] = ACTIONS(1665), - [anon_sym_POUNDifndef] = ACTIONS(1665), - [anon_sym_POUNDendif] = ACTIONS(1665), - [anon_sym_POUNDelse] = ACTIONS(1665), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1665), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1665), - [anon_sym_typedef] = ACTIONS(1665), - [anon_sym_auto] = ACTIONS(1665), - [anon_sym_register] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_restrict] = ACTIONS(1665), - [anon_sym_volatile] = ACTIONS(1665), - [sym_function_specifier] = ACTIONS(1665), - [anon_sym_unsigned] = ACTIONS(1665), - [anon_sym_long] = ACTIONS(1665), - [anon_sym_short] = ACTIONS(1665), - [anon_sym_enum] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_union] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), + [737] = { + [ts_builtin_sym_end] = ACTIONS(1681), + [anon_sym_POUNDinclude] = ACTIONS(1683), + [anon_sym_POUNDdefine] = ACTIONS(1683), + [anon_sym_POUNDifdef] = ACTIONS(1683), + [anon_sym_POUNDifndef] = ACTIONS(1683), + [anon_sym_POUNDendif] = ACTIONS(1683), + [anon_sym_POUNDelse] = ACTIONS(1683), + [sym_preproc_directive] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_static] = ACTIONS(1683), + [anon_sym_typedef] = ACTIONS(1683), + [anon_sym_auto] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_restrict] = ACTIONS(1683), + [anon_sym_volatile] = ACTIONS(1683), + [sym_function_specifier] = ACTIONS(1683), + [anon_sym_unsigned] = ACTIONS(1683), + [anon_sym_long] = ACTIONS(1683), + [anon_sym_short] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(1683), + [anon_sym_union] = ACTIONS(1683), + [sym_identifier] = ACTIONS(1685), [sym_comment] = ACTIONS(121), }, - [734] = { + [738] = { [sym__top_level_item] = STATE(16), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), @@ -36360,7 +36901,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_function_def] = STATE(18), [sym_preproc_call] = STATE(18), [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(737), + [sym_preproc_else] = STATE(741), [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym__declaration_specifiers] = STATE(19), @@ -36374,15 +36915,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_union_specifier] = STATE(21), [sym__empty_declaration] = STATE(17), [sym_macro_type_specifier] = STATE(21), - [aux_sym_translation_unit_repeat1] = STATE(738), + [aux_sym_translation_unit_repeat1] = STATE(742), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), [anon_sym_POUNDinclude] = ACTIONS(125), [anon_sym_POUNDdefine] = ACTIONS(127), [anon_sym_POUNDifdef] = ACTIONS(129), [anon_sym_POUNDifndef] = ACTIONS(129), - [anon_sym_POUNDendif] = ACTIONS(1669), - [anon_sym_POUNDelse] = ACTIONS(1671), + [anon_sym_POUNDendif] = ACTIONS(1687), + [anon_sym_POUNDelse] = ACTIONS(1689), [sym_preproc_directive] = ACTIONS(131), [anon_sym_extern] = ACTIONS(133), [anon_sym_static] = ACTIONS(135), @@ -36402,35 +36943,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(1673), - [anon_sym_POUNDinclude] = ACTIONS(1675), - [anon_sym_POUNDdefine] = ACTIONS(1675), - [anon_sym_POUNDifdef] = ACTIONS(1675), - [anon_sym_POUNDifndef] = ACTIONS(1675), - [anon_sym_POUNDendif] = ACTIONS(1675), - [anon_sym_POUNDelse] = ACTIONS(1675), - [sym_preproc_directive] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_typedef] = ACTIONS(1675), - [anon_sym_auto] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(1675), - [anon_sym_volatile] = ACTIONS(1675), - [sym_function_specifier] = ACTIONS(1675), - [anon_sym_unsigned] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), + [739] = { + [ts_builtin_sym_end] = ACTIONS(1691), + [anon_sym_POUNDinclude] = ACTIONS(1693), + [anon_sym_POUNDdefine] = ACTIONS(1693), + [anon_sym_POUNDifdef] = ACTIONS(1693), + [anon_sym_POUNDifndef] = ACTIONS(1693), + [anon_sym_POUNDendif] = ACTIONS(1693), + [anon_sym_POUNDelse] = ACTIONS(1693), + [sym_preproc_directive] = ACTIONS(1695), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1693), + [anon_sym_typedef] = ACTIONS(1693), + [anon_sym_auto] = ACTIONS(1693), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_restrict] = ACTIONS(1693), + [anon_sym_volatile] = ACTIONS(1693), + [sym_function_specifier] = ACTIONS(1693), + [anon_sym_unsigned] = ACTIONS(1693), + [anon_sym_long] = ACTIONS(1693), + [anon_sym_short] = ACTIONS(1693), + [anon_sym_enum] = ACTIONS(1693), + [anon_sym_struct] = ACTIONS(1693), + [anon_sym_union] = ACTIONS(1693), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(121), }, - [736] = { + [740] = { [sym__top_level_item] = STATE(16), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), @@ -36451,14 +36992,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_union_specifier] = STATE(21), [sym__empty_declaration] = STATE(17), [sym_macro_type_specifier] = STATE(21), - [aux_sym_translation_unit_repeat1] = STATE(742), + [aux_sym_translation_unit_repeat1] = STATE(746), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), [anon_sym_POUNDinclude] = ACTIONS(125), [anon_sym_POUNDdefine] = ACTIONS(127), [anon_sym_POUNDifdef] = ACTIONS(129), [anon_sym_POUNDifndef] = ACTIONS(129), - [anon_sym_POUNDendif] = ACTIONS(1679), + [anon_sym_POUNDendif] = ACTIONS(1697), [sym_preproc_directive] = ACTIONS(131), [anon_sym_extern] = ACTIONS(133), [anon_sym_static] = ACTIONS(135), @@ -36478,11 +37019,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [737] = { - [anon_sym_POUNDendif] = ACTIONS(1681), + [741] = { + [anon_sym_POUNDendif] = ACTIONS(1699), [sym_comment] = ACTIONS(121), }, - [738] = { + [742] = { [sym__top_level_item] = STATE(28), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), @@ -36490,7 +37031,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_function_def] = STATE(18), [sym_preproc_call] = STATE(18), [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(740), + [sym_preproc_else] = STATE(744), [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym__declaration_specifiers] = STATE(19), @@ -36510,8 +37051,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(127), [anon_sym_POUNDifdef] = ACTIONS(129), [anon_sym_POUNDifndef] = ACTIONS(129), - [anon_sym_POUNDendif] = ACTIONS(1683), - [anon_sym_POUNDelse] = ACTIONS(1671), + [anon_sym_POUNDendif] = ACTIONS(1701), + [anon_sym_POUNDelse] = ACTIONS(1689), [sym_preproc_directive] = ACTIONS(131), [anon_sym_extern] = ACTIONS(133), [anon_sym_static] = ACTIONS(135), @@ -36531,67 +37072,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(1685), - [anon_sym_POUNDinclude] = ACTIONS(1687), - [anon_sym_POUNDdefine] = ACTIONS(1687), - [anon_sym_POUNDifdef] = ACTIONS(1687), - [anon_sym_POUNDifndef] = ACTIONS(1687), - [anon_sym_POUNDendif] = ACTIONS(1687), - [anon_sym_POUNDelse] = ACTIONS(1687), - [sym_preproc_directive] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1685), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1687), - [anon_sym_auto] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_restrict] = ACTIONS(1687), - [anon_sym_volatile] = ACTIONS(1687), - [sym_function_specifier] = ACTIONS(1687), - [anon_sym_unsigned] = ACTIONS(1687), - [anon_sym_long] = ACTIONS(1687), - [anon_sym_short] = ACTIONS(1687), - [anon_sym_enum] = ACTIONS(1687), - [anon_sym_struct] = ACTIONS(1687), - [anon_sym_union] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1689), + [743] = { + [ts_builtin_sym_end] = ACTIONS(1703), + [anon_sym_POUNDinclude] = ACTIONS(1705), + [anon_sym_POUNDdefine] = ACTIONS(1705), + [anon_sym_POUNDifdef] = ACTIONS(1705), + [anon_sym_POUNDifndef] = ACTIONS(1705), + [anon_sym_POUNDendif] = ACTIONS(1705), + [anon_sym_POUNDelse] = ACTIONS(1705), + [sym_preproc_directive] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_typedef] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [sym_function_specifier] = ACTIONS(1705), + [anon_sym_unsigned] = ACTIONS(1705), + [anon_sym_long] = ACTIONS(1705), + [anon_sym_short] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_union] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1707), [sym_comment] = ACTIONS(121), }, - [740] = { - [anon_sym_POUNDendif] = ACTIONS(1691), + [744] = { + [anon_sym_POUNDendif] = ACTIONS(1709), [sym_comment] = ACTIONS(121), }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(1693), - [anon_sym_POUNDinclude] = ACTIONS(1695), - [anon_sym_POUNDdefine] = ACTIONS(1695), - [anon_sym_POUNDifdef] = ACTIONS(1695), - [anon_sym_POUNDifndef] = ACTIONS(1695), - [anon_sym_POUNDendif] = ACTIONS(1695), - [anon_sym_POUNDelse] = ACTIONS(1695), - [sym_preproc_directive] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_typedef] = ACTIONS(1695), - [anon_sym_auto] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_restrict] = ACTIONS(1695), - [anon_sym_volatile] = ACTIONS(1695), - [sym_function_specifier] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [anon_sym_enum] = ACTIONS(1695), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_union] = ACTIONS(1695), - [sym_identifier] = ACTIONS(1697), + [745] = { + [ts_builtin_sym_end] = ACTIONS(1711), + [anon_sym_POUNDinclude] = ACTIONS(1713), + [anon_sym_POUNDdefine] = ACTIONS(1713), + [anon_sym_POUNDifdef] = ACTIONS(1713), + [anon_sym_POUNDifndef] = ACTIONS(1713), + [anon_sym_POUNDendif] = ACTIONS(1713), + [anon_sym_POUNDelse] = ACTIONS(1713), + [sym_preproc_directive] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_static] = ACTIONS(1713), + [anon_sym_typedef] = ACTIONS(1713), + [anon_sym_auto] = ACTIONS(1713), + [anon_sym_register] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_restrict] = ACTIONS(1713), + [anon_sym_volatile] = ACTIONS(1713), + [sym_function_specifier] = ACTIONS(1713), + [anon_sym_unsigned] = ACTIONS(1713), + [anon_sym_long] = ACTIONS(1713), + [anon_sym_short] = ACTIONS(1713), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_struct] = ACTIONS(1713), + [anon_sym_union] = ACTIONS(1713), + [sym_identifier] = ACTIONS(1715), [sym_comment] = ACTIONS(121), }, - [742] = { + [746] = { [sym__top_level_item] = STATE(28), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), @@ -36618,7 +37159,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(127), [anon_sym_POUNDifdef] = ACTIONS(129), [anon_sym_POUNDifndef] = ACTIONS(129), - [anon_sym_POUNDendif] = ACTIONS(1699), + [anon_sym_POUNDendif] = ACTIONS(1717), [sym_preproc_directive] = ACTIONS(131), [anon_sym_extern] = ACTIONS(133), [anon_sym_static] = ACTIONS(135), @@ -36638,244 +37179,244 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [743] = { - [sym_preproc_params] = STATE(747), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [sym_comment] = ACTIONS(121), - }, - [744] = { - [sym_preproc_arg] = ACTIONS(1707), - [sym_comment] = ACTIONS(121), - }, - [745] = { - [ts_builtin_sym_end] = ACTIONS(1709), - [anon_sym_POUNDinclude] = ACTIONS(1711), - [anon_sym_POUNDdefine] = ACTIONS(1711), - [anon_sym_POUNDifdef] = ACTIONS(1711), - [anon_sym_POUNDifndef] = ACTIONS(1711), - [anon_sym_POUNDendif] = ACTIONS(1711), - [anon_sym_POUNDelse] = ACTIONS(1711), - [sym_preproc_directive] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_typedef] = ACTIONS(1711), - [anon_sym_auto] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_restrict] = ACTIONS(1711), - [anon_sym_volatile] = ACTIONS(1711), - [sym_function_specifier] = ACTIONS(1711), - [anon_sym_unsigned] = ACTIONS(1711), - [anon_sym_long] = ACTIONS(1711), - [anon_sym_short] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [sym_identifier] = ACTIONS(1713), - [sym_comment] = ACTIONS(121), - }, - [746] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [sym_comment] = ACTIONS(121), - }, [747] = { + [sym_preproc_params] = STATE(751), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1719), [anon_sym_LF] = ACTIONS(1721), - [sym_preproc_arg] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), [sym_comment] = ACTIONS(121), }, [748] = { - [ts_builtin_sym_end] = ACTIONS(1725), - [anon_sym_POUNDinclude] = ACTIONS(1727), - [anon_sym_POUNDdefine] = ACTIONS(1727), - [anon_sym_POUNDifdef] = ACTIONS(1727), - [anon_sym_POUNDifndef] = ACTIONS(1727), - [anon_sym_POUNDendif] = ACTIONS(1727), - [anon_sym_POUNDelse] = ACTIONS(1727), - [sym_preproc_directive] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1727), - [anon_sym_auto] = ACTIONS(1727), - [anon_sym_register] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_restrict] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [sym_function_specifier] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), + [sym_preproc_arg] = ACTIONS(1725), [sym_comment] = ACTIONS(121), }, [749] = { - [anon_sym_LF] = ACTIONS(1731), + [ts_builtin_sym_end] = ACTIONS(1727), + [anon_sym_POUNDinclude] = ACTIONS(1729), + [anon_sym_POUNDdefine] = ACTIONS(1729), + [anon_sym_POUNDifdef] = ACTIONS(1729), + [anon_sym_POUNDifndef] = ACTIONS(1729), + [anon_sym_POUNDendif] = ACTIONS(1729), + [anon_sym_POUNDelse] = ACTIONS(1729), + [sym_preproc_directive] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_typedef] = ACTIONS(1729), + [anon_sym_auto] = ACTIONS(1729), + [anon_sym_register] = ACTIONS(1729), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_restrict] = ACTIONS(1729), + [anon_sym_volatile] = ACTIONS(1729), + [sym_function_specifier] = ACTIONS(1729), + [anon_sym_unsigned] = ACTIONS(1729), + [anon_sym_long] = ACTIONS(1729), + [anon_sym_short] = ACTIONS(1729), + [anon_sym_enum] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1729), + [anon_sym_union] = ACTIONS(1729), + [sym_identifier] = ACTIONS(1731), [sym_comment] = ACTIONS(121), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [anon_sym_POUNDinclude] = ACTIONS(1735), - [anon_sym_POUNDdefine] = ACTIONS(1735), - [anon_sym_POUNDifdef] = ACTIONS(1735), - [anon_sym_POUNDifndef] = ACTIONS(1735), - [anon_sym_POUNDendif] = ACTIONS(1735), - [anon_sym_POUNDelse] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1735), - [anon_sym_auto] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [sym_function_specifier] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1733), + [anon_sym_RPAREN] = ACTIONS(1735), [sym_identifier] = ACTIONS(1737), [sym_comment] = ACTIONS(121), }, [751] = { - [aux_sym_preproc_params_repeat1] = STATE(755), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_LF] = ACTIONS(1739), + [sym_preproc_arg] = ACTIONS(1741), [sym_comment] = ACTIONS(121), }, [752] = { - [anon_sym_LF] = ACTIONS(1743), - [sym_preproc_arg] = ACTIONS(1745), + [ts_builtin_sym_end] = ACTIONS(1743), + [anon_sym_POUNDinclude] = ACTIONS(1745), + [anon_sym_POUNDdefine] = ACTIONS(1745), + [anon_sym_POUNDifdef] = ACTIONS(1745), + [anon_sym_POUNDifndef] = ACTIONS(1745), + [anon_sym_POUNDendif] = ACTIONS(1745), + [anon_sym_POUNDelse] = ACTIONS(1745), + [sym_preproc_directive] = ACTIONS(1747), + [anon_sym_extern] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_typedef] = ACTIONS(1745), + [anon_sym_auto] = ACTIONS(1745), + [anon_sym_register] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_restrict] = ACTIONS(1745), + [anon_sym_volatile] = ACTIONS(1745), + [sym_function_specifier] = ACTIONS(1745), + [anon_sym_unsigned] = ACTIONS(1745), + [anon_sym_long] = ACTIONS(1745), + [anon_sym_short] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [sym_identifier] = ACTIONS(1747), [sym_comment] = ACTIONS(121), }, [753] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1749), + [anon_sym_LF] = ACTIONS(1749), [sym_comment] = ACTIONS(121), }, [754] = { - [anon_sym_LF] = ACTIONS(1751), - [sym_preproc_arg] = ACTIONS(1753), + [ts_builtin_sym_end] = ACTIONS(1751), + [anon_sym_POUNDinclude] = ACTIONS(1753), + [anon_sym_POUNDdefine] = ACTIONS(1753), + [anon_sym_POUNDifdef] = ACTIONS(1753), + [anon_sym_POUNDifndef] = ACTIONS(1753), + [anon_sym_POUNDendif] = ACTIONS(1753), + [anon_sym_POUNDelse] = ACTIONS(1753), + [sym_preproc_directive] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1753), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_typedef] = ACTIONS(1753), + [anon_sym_auto] = ACTIONS(1753), + [anon_sym_register] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_restrict] = ACTIONS(1753), + [anon_sym_volatile] = ACTIONS(1753), + [sym_function_specifier] = ACTIONS(1753), + [anon_sym_unsigned] = ACTIONS(1753), + [anon_sym_long] = ACTIONS(1753), + [anon_sym_short] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_struct] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1755), [sym_comment] = ACTIONS(121), }, [755] = { - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1757), + [aux_sym_preproc_params_repeat1] = STATE(759), + [anon_sym_COMMA] = ACTIONS(1757), + [anon_sym_RPAREN] = ACTIONS(1759), [sym_comment] = ACTIONS(121), }, [756] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1761), + [anon_sym_LF] = ACTIONS(1761), + [sym_preproc_arg] = ACTIONS(1763), [sym_comment] = ACTIONS(121), }, [757] = { - [anon_sym_LF] = ACTIONS(1763), - [sym_preproc_arg] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1767), [sym_comment] = ACTIONS(121), }, [758] = { - [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1769), + [sym_preproc_arg] = ACTIONS(1771), [sym_comment] = ACTIONS(121), }, [759] = { - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1775), [sym_comment] = ACTIONS(121), }, [760] = { - [anon_sym_LF] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1779), [sym_comment] = ACTIONS(121), }, [761] = { - [ts_builtin_sym_end] = ACTIONS(1773), - [anon_sym_POUNDinclude] = ACTIONS(1775), - [anon_sym_POUNDdefine] = ACTIONS(1775), - [anon_sym_POUNDifdef] = ACTIONS(1775), - [anon_sym_POUNDifndef] = ACTIONS(1775), - [anon_sym_POUNDendif] = ACTIONS(1775), - [anon_sym_POUNDelse] = ACTIONS(1775), - [sym_preproc_directive] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_typedef] = ACTIONS(1775), - [anon_sym_auto] = ACTIONS(1775), - [anon_sym_register] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1775), - [anon_sym_volatile] = ACTIONS(1775), - [sym_function_specifier] = ACTIONS(1775), - [anon_sym_unsigned] = ACTIONS(1775), - [anon_sym_long] = ACTIONS(1775), - [anon_sym_short] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1775), - [anon_sym_union] = ACTIONS(1775), - [sym_identifier] = ACTIONS(1777), + [anon_sym_LF] = ACTIONS(1781), + [sym_preproc_arg] = ACTIONS(1783), [sym_comment] = ACTIONS(121), }, [762] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [anon_sym_POUNDinclude] = ACTIONS(1781), - [anon_sym_POUNDdefine] = ACTIONS(1781), - [anon_sym_POUNDifdef] = ACTIONS(1781), - [anon_sym_POUNDifndef] = ACTIONS(1781), - [anon_sym_POUNDendif] = ACTIONS(1781), - [anon_sym_POUNDelse] = ACTIONS(1781), - [sym_preproc_directive] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1781), - [anon_sym_typedef] = ACTIONS(1781), - [anon_sym_auto] = ACTIONS(1781), - [anon_sym_register] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_restrict] = ACTIONS(1781), - [anon_sym_volatile] = ACTIONS(1781), - [sym_function_specifier] = ACTIONS(1781), - [anon_sym_unsigned] = ACTIONS(1781), - [anon_sym_long] = ACTIONS(1781), - [anon_sym_short] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_RPAREN] = ACTIONS(1785), [sym_comment] = ACTIONS(121), }, [763] = { - [sym_declaration] = STATE(688), - [sym__declaration_specifiers] = STATE(1106), - [sym__declarator] = STATE(260), - [sym__abstract_declarator] = STATE(261), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_RPAREN] = ACTIONS(1787), + [sym_comment] = ACTIONS(121), + }, + [764] = { + [anon_sym_LF] = ACTIONS(1789), + [sym_comment] = ACTIONS(121), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(1791), + [anon_sym_POUNDinclude] = ACTIONS(1793), + [anon_sym_POUNDdefine] = ACTIONS(1793), + [anon_sym_POUNDifdef] = ACTIONS(1793), + [anon_sym_POUNDifndef] = ACTIONS(1793), + [anon_sym_POUNDendif] = ACTIONS(1793), + [anon_sym_POUNDelse] = ACTIONS(1793), + [sym_preproc_directive] = ACTIONS(1795), + [anon_sym_extern] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_typedef] = ACTIONS(1793), + [anon_sym_auto] = ACTIONS(1793), + [anon_sym_register] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [sym_function_specifier] = ACTIONS(1793), + [anon_sym_unsigned] = ACTIONS(1793), + [anon_sym_long] = ACTIONS(1793), + [anon_sym_short] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [sym_comment] = ACTIONS(121), + }, + [766] = { + [ts_builtin_sym_end] = ACTIONS(1797), + [anon_sym_POUNDinclude] = ACTIONS(1799), + [anon_sym_POUNDdefine] = ACTIONS(1799), + [anon_sym_POUNDifdef] = ACTIONS(1799), + [anon_sym_POUNDifndef] = ACTIONS(1799), + [anon_sym_POUNDendif] = ACTIONS(1799), + [anon_sym_POUNDelse] = ACTIONS(1799), + [sym_preproc_directive] = ACTIONS(1801), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_typedef] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_restrict] = ACTIONS(1799), + [anon_sym_volatile] = ACTIONS(1799), + [sym_function_specifier] = ACTIONS(1799), + [anon_sym_unsigned] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1801), + [sym_comment] = ACTIONS(121), + }, + [767] = { + [sym_declaration] = STATE(692), + [sym__declaration_specifiers] = STATE(1110), + [sym__declarator] = STATE(264), + [sym__abstract_declarator] = STATE(265), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), + [sym_abstract_array_declarator] = STATE(212), [sym_storage_class_specifier] = STATE(9), - [sym_type_qualifier] = STATE(996), - [sym__type_specifier] = STATE(1107), + [sym_type_qualifier] = STATE(1000), + [sym__type_specifier] = STATE(1111), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_parameter_type_list] = STATE(811), - [sym_parameter_declaration] = STATE(222), - [sym__expression] = STATE(1108), - [sym_comma_expression] = STATE(198), + [sym_parameter_type_list] = STATE(815), + [sym_parameter_declaration] = STATE(226), + [sym__expression] = STATE(1112), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -36892,18 +37433,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(816), + [sym_type_name] = STATE(820), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), - [aux_sym_array_declarator_repeat1] = STATE(200), + [aux_sym_array_declarator_repeat1] = STATE(204), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1621), [anon_sym_extern] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(661), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -36918,45 +37460,45 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1805), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1823), [sym_comment] = ACTIONS(121), }, - [764] = { - [aux_sym_preproc_params_repeat1] = STATE(755), - [aux_sym_parameter_type_list_repeat1] = STATE(228), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RPAREN] = ACTIONS(1813), + [768] = { + [aux_sym_preproc_params_repeat1] = STATE(759), + [aux_sym_parameter_type_list_repeat1] = STATE(232), + [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1831), [sym_comment] = ACTIONS(121), }, - [765] = { - [sym__declaration_specifiers] = STATE(224), - [sym__declarator] = STATE(1061), + [769] = { + [sym__declaration_specifiers] = STATE(228), + [sym__declarator] = STATE(1065), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym_init_declarator] = STATE(1062), + [sym_init_declarator] = STATE(1066), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(225), + [sym__type_specifier] = STATE(229), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_enumerator] = STATE(430), - [sym_parameter_declaration] = STATE(1063), - [sym__expression] = STATE(1064), - [sym_comma_expression] = STATE(389), + [sym_enumerator] = STATE(434), + [sym_parameter_declaration] = STATE(1067), + [sym__expression] = STATE(1068), + [sym_comma_expression] = STATE(393), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -36973,19 +37515,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(348), - [sym_designator] = STATE(343), + [sym_initializer_list] = STATE(352), + [sym_designator] = STATE(347), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym__initializer_list_contents_repeat1] = STATE(377), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1822), + [aux_sym__initializer_list_contents_repeat1] = STATE(381), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1840), [anon_sym_extern] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -37000,166 +37543,167 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(1858), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1842), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1860), [sym_comment] = ACTIONS(121), }, - [766] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(1048), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(1049), - [sym_comma_expression] = STATE(481), - [sym_conditional_expression] = STATE(53), - [sym_assignment_expression] = STATE(53), - [sym_pointer_expression] = STATE(53), - [sym_logical_expression] = STATE(53), - [sym_bitwise_expression] = STATE(53), - [sym_equality_expression] = STATE(53), - [sym_relational_expression] = STATE(53), - [sym_shift_expression] = STATE(53), - [sym_math_expression] = STATE(53), - [sym_cast_expression] = STATE(53), - [sym_sizeof_expression] = STATE(53), - [sym_subscript_expression] = STATE(53), - [sym_call_expression] = STATE(53), - [sym_field_expression] = STATE(53), - [sym_compound_literal_expression] = STATE(53), - [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LF] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [sym_preproc_arg] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_RBRACK] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_typedef] = ACTIONS(1431), - [anon_sym_auto] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_restrict] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(1431), - [sym_function_specifier] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_COLON] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1945), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_do] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_goto] = ACTIONS(1969), - [anon_sym_QMARK] = ACTIONS(1914), - [anon_sym_STAR_EQ] = ACTIONS(1914), - [anon_sym_SLASH_EQ] = ACTIONS(1914), - [anon_sym_PERCENT_EQ] = ACTIONS(1914), - [anon_sym_PLUS_EQ] = ACTIONS(1914), - [anon_sym_DASH_EQ] = ACTIONS(1914), - [anon_sym_LT_LT_EQ] = ACTIONS(1914), - [anon_sym_GT_GT_EQ] = ACTIONS(1914), - [anon_sym_AMP_EQ] = ACTIONS(1914), - [anon_sym_CARET_EQ] = ACTIONS(1914), - [anon_sym_PIPE_EQ] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1989), - [anon_sym_EQ_EQ] = ACTIONS(1914), - [anon_sym_BANG_EQ] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1983), - [anon_sym_GT] = ACTIONS(1983), - [anon_sym_LT_EQ] = ACTIONS(1914), - [anon_sym_GT_EQ] = ACTIONS(1914), - [anon_sym_LT_LT] = ACTIONS(1983), - [anon_sym_GT_GT] = ACTIONS(1983), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_SLASH] = ACTIONS(1983), - [anon_sym_PERCENT] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(2008), - [anon_sym_DOT] = ACTIONS(1914), - [anon_sym_DASH_GT] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(2011), - [sym_char_literal] = ACTIONS(2011), - [sym_string_literal] = ACTIONS(2011), - [sym_identifier] = ACTIONS(2014), + [770] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(1052), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(1053), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(53), + [sym_assignment_expression] = STATE(53), + [sym_pointer_expression] = STATE(53), + [sym_logical_expression] = STATE(53), + [sym_bitwise_expression] = STATE(53), + [sym_equality_expression] = STATE(53), + [sym_relational_expression] = STATE(53), + [sym_shift_expression] = STATE(53), + [sym_math_expression] = STATE(53), + [sym_cast_expression] = STATE(53), + [sym_sizeof_expression] = STATE(53), + [sym_subscript_expression] = STATE(53), + [sym_call_expression] = STATE(53), + [sym_field_expression] = STATE(53), + [sym_compound_literal_expression] = STATE(53), + [sym_parenthesized_expression] = STATE(53), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LF] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [sym_preproc_arg] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_RBRACK] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_auto] = ACTIONS(1449), + [anon_sym_register] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_restrict] = ACTIONS(1449), + [anon_sym_volatile] = ACTIONS(1449), + [sym_function_specifier] = ACTIONS(1449), + [anon_sym_unsigned] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_case] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(1932), + [anon_sym_STAR_EQ] = ACTIONS(1932), + [anon_sym_SLASH_EQ] = ACTIONS(1932), + [anon_sym_PERCENT_EQ] = ACTIONS(1932), + [anon_sym_PLUS_EQ] = ACTIONS(1932), + [anon_sym_DASH_EQ] = ACTIONS(1932), + [anon_sym_LT_LT_EQ] = ACTIONS(1932), + [anon_sym_GT_GT_EQ] = ACTIONS(1932), + [anon_sym_AMP_EQ] = ACTIONS(1932), + [anon_sym_CARET_EQ] = ACTIONS(1932), + [anon_sym_PIPE_EQ] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym_TILDE] = ACTIONS(2007), + [anon_sym_EQ_EQ] = ACTIONS(1932), + [anon_sym_BANG_EQ] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(1932), + [anon_sym_GT_EQ] = ACTIONS(1932), + [anon_sym_LT_LT] = ACTIONS(2001), + [anon_sym_GT_GT] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2010), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2026), + [anon_sym_DOT] = ACTIONS(1932), + [anon_sym_DASH_GT] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(2029), + [sym_char_literal] = ACTIONS(2029), + [sym_string_literal] = ACTIONS(2032), + [sym_identifier] = ACTIONS(2035), [sym_comment] = ACTIONS(121), }, - [767] = { - [ts_builtin_sym_end] = ACTIONS(2018), - [anon_sym_POUNDinclude] = ACTIONS(2022), - [anon_sym_POUNDdefine] = ACTIONS(2022), - [anon_sym_POUNDifdef] = ACTIONS(2022), - [anon_sym_POUNDifndef] = ACTIONS(2022), - [anon_sym_POUNDendif] = ACTIONS(2022), - [anon_sym_POUNDelse] = ACTIONS(2022), - [sym_preproc_directive] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_typedef] = ACTIONS(2022), - [anon_sym_auto] = ACTIONS(2022), - [anon_sym_register] = ACTIONS(2022), - [anon_sym_const] = ACTIONS(2022), - [anon_sym_restrict] = ACTIONS(2022), - [anon_sym_volatile] = ACTIONS(2022), - [sym_function_specifier] = ACTIONS(2022), - [anon_sym_unsigned] = ACTIONS(2022), - [anon_sym_long] = ACTIONS(2022), - [anon_sym_short] = ACTIONS(2022), - [anon_sym_enum] = ACTIONS(2022), - [anon_sym_struct] = ACTIONS(2022), - [anon_sym_union] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2026), + [771] = { + [ts_builtin_sym_end] = ACTIONS(2039), + [anon_sym_POUNDinclude] = ACTIONS(2043), + [anon_sym_POUNDdefine] = ACTIONS(2043), + [anon_sym_POUNDifdef] = ACTIONS(2043), + [anon_sym_POUNDifndef] = ACTIONS(2043), + [anon_sym_POUNDendif] = ACTIONS(2043), + [anon_sym_POUNDelse] = ACTIONS(2043), + [sym_preproc_directive] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_typedef] = ACTIONS(2043), + [anon_sym_auto] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_restrict] = ACTIONS(2043), + [anon_sym_volatile] = ACTIONS(2043), + [sym_function_specifier] = ACTIONS(2043), + [anon_sym_unsigned] = ACTIONS(2043), + [anon_sym_long] = ACTIONS(2043), + [anon_sym_short] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_struct] = ACTIONS(2043), + [anon_sym_union] = ACTIONS(2043), + [sym_identifier] = ACTIONS(2047), [sym_comment] = ACTIONS(121), }, - [768] = { - [sym__expression] = STATE(1035), + [772] = { + [sym__expression] = STATE(1039), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37176,62 +37720,63 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [ts_builtin_sym_end] = ACTIONS(2030), - [anon_sym_POUNDinclude] = ACTIONS(2036), - [anon_sym_POUNDdefine] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_POUNDifdef] = ACTIONS(2036), - [anon_sym_POUNDifndef] = ACTIONS(2036), - [anon_sym_POUNDendif] = ACTIONS(2036), - [anon_sym_POUNDelse] = ACTIONS(2036), - [sym_preproc_directive] = ACTIONS(2058), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_restrict] = ACTIONS(2137), - [anon_sym_volatile] = ACTIONS(2137), - [sym_function_specifier] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2137), - [anon_sym_long] = ACTIONS(2137), - [anon_sym_short] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2220), - [sym_number_literal] = ACTIONS(2234), - [sym_char_literal] = ACTIONS(2234), - [sym_string_literal] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2248), + [sym_concatenated_string] = STATE(53), + [ts_builtin_sym_end] = ACTIONS(2051), + [anon_sym_POUNDinclude] = ACTIONS(2057), + [anon_sym_POUNDdefine] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_POUNDifdef] = ACTIONS(2057), + [anon_sym_POUNDifndef] = ACTIONS(2057), + [anon_sym_POUNDendif] = ACTIONS(2057), + [anon_sym_POUNDelse] = ACTIONS(2057), + [sym_preproc_directive] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_static] = ACTIONS(2099), + [anon_sym_typedef] = ACTIONS(2099), + [anon_sym_auto] = ACTIONS(2099), + [anon_sym_register] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_restrict] = ACTIONS(2158), + [anon_sym_volatile] = ACTIONS(2158), + [sym_function_specifier] = ACTIONS(2099), + [anon_sym_unsigned] = ACTIONS(2158), + [anon_sym_long] = ACTIONS(2158), + [anon_sym_short] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_struct] = ACTIONS(2158), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_else] = ACTIONS(2177), + [anon_sym_switch] = ACTIONS(2099), + [anon_sym_case] = ACTIONS(2099), + [anon_sym_default] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_goto] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_sizeof] = ACTIONS(2241), + [sym_number_literal] = ACTIONS(2255), + [sym_char_literal] = ACTIONS(2255), + [sym_string_literal] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2283), [sym_comment] = ACTIONS(121), }, - [769] = { + [773] = { [sym__top_level_item] = STATE(16), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), @@ -37240,35 +37785,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(18), [sym_preproc_ifdef] = STATE(18), [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(995), + [sym_declaration] = STATE(999), [sym__declaration_specifiers] = STATE(19), [sym_linkage_specification] = STATE(17), - [sym_compound_statement] = STATE(478), + [sym_compound_statement] = STATE(482), [sym_storage_class_specifier] = STATE(9), - [sym_type_qualifier] = STATE(996), - [sym__type_specifier] = STATE(997), + [sym_type_qualifier] = STATE(1000), + [sym__type_specifier] = STATE(1001), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), - [sym__enum_specifier_contents] = STATE(808), + [sym__enum_specifier_contents] = STATE(812), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(275), - [sym_enumerator] = STATE(426), - [sym__statement] = STATE(476), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(998), - [sym_comma_expression] = STATE(481), + [sym_struct_declaration] = STATE(279), + [sym_enumerator] = STATE(430), + [sym__statement] = STATE(480), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(1002), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37285,30 +37830,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(341), - [sym__initializer_list_contents] = STATE(342), - [sym_designator] = STATE(343), - [sym__empty_declaration] = STATE(995), + [sym_initializer_list] = STATE(345), + [sym__initializer_list_contents] = STATE(346), + [sym_designator] = STATE(347), + [sym_concatenated_string] = STATE(53), + [sym__empty_declaration] = STATE(999), [sym_macro_type_specifier] = STATE(21), - [aux_sym_translation_unit_repeat1] = STATE(731), + [aux_sym_translation_unit_repeat1] = STATE(735), [aux_sym__declaration_specifiers_repeat1] = STATE(23), - [aux_sym_array_declarator_repeat1] = STATE(276), - [aux_sym_compound_statement_repeat1] = STATE(482), + [aux_sym_array_declarator_repeat1] = STATE(280), + [aux_sym_compound_statement_repeat1] = STATE(486), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym_struct_specifier_repeat1] = STATE(823), - [aux_sym__initializer_list_contents_repeat1] = STATE(344), + [aux_sym_struct_specifier_repeat1] = STATE(827), + [aux_sym__initializer_list_contents_repeat1] = STATE(348), [anon_sym_POUNDinclude] = ACTIONS(125), [anon_sym_POUNDdefine] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2303), [anon_sym_POUNDifdef] = ACTIONS(129), [anon_sym_POUNDifndef] = ACTIONS(129), [sym_preproc_directive] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_extern] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -37323,130 +37869,130 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(385), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), + [anon_sym_DOT] = ACTIONS(387), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(2321), [sym_comment] = ACTIONS(121), }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(2288), - [anon_sym_POUNDinclude] = ACTIONS(2293), - [anon_sym_POUNDdefine] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_COMMA] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_POUNDifdef] = ACTIONS(2293), - [anon_sym_POUNDifndef] = ACTIONS(2293), - [anon_sym_POUNDendif] = ACTIONS(2293), - [anon_sym_POUNDelse] = ACTIONS(2293), - [sym_preproc_directive] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_extern] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2293), - [anon_sym_RBRACK] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_typedef] = ACTIONS(2293), - [anon_sym_auto] = ACTIONS(2293), - [anon_sym_register] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_restrict] = ACTIONS(2293), - [anon_sym_volatile] = ACTIONS(2293), - [sym_function_specifier] = ACTIONS(2293), - [anon_sym_unsigned] = ACTIONS(2293), - [anon_sym_long] = ACTIONS(2293), - [anon_sym_short] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_union] = ACTIONS(2293), - [anon_sym_COLON] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_case] = ACTIONS(2365), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_goto] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_LT_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_GT_EQ] = ACTIONS(2357), - [anon_sym_AMP_EQ] = ACTIONS(2357), - [anon_sym_CARET_EQ] = ACTIONS(2357), - [anon_sym_PIPE_EQ] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2365), - [anon_sym_PIPE] = ACTIONS(2361), - [anon_sym_CARET] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2357), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_GT] = ACTIONS(2361), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_LT_LT] = ACTIONS(2361), - [anon_sym_GT_GT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_SLASH] = ACTIONS(2361), - [anon_sym_PERCENT] = ACTIONS(2361), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_sizeof] = ACTIONS(2365), - [anon_sym_DOT] = ACTIONS(2357), - [anon_sym_DASH_GT] = ACTIONS(2357), - [sym_number_literal] = ACTIONS(2365), - [sym_char_literal] = ACTIONS(2365), - [sym_string_literal] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2380), + [774] = { + [ts_builtin_sym_end] = ACTIONS(2323), + [anon_sym_POUNDinclude] = ACTIONS(2328), + [anon_sym_POUNDdefine] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(2348), + [anon_sym_RPAREN] = ACTIONS(2348), + [anon_sym_POUNDifdef] = ACTIONS(2328), + [anon_sym_POUNDifndef] = ACTIONS(2328), + [anon_sym_POUNDendif] = ACTIONS(2328), + [anon_sym_POUNDelse] = ACTIONS(2328), + [sym_preproc_directive] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_RBRACK] = ACTIONS(2392), + [anon_sym_EQ] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2328), + [anon_sym_auto] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_restrict] = ACTIONS(2328), + [anon_sym_volatile] = ACTIONS(2328), + [sym_function_specifier] = ACTIONS(2328), + [anon_sym_unsigned] = ACTIONS(2328), + [anon_sym_long] = ACTIONS(2328), + [anon_sym_short] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [anon_sym_struct] = ACTIONS(2328), + [anon_sym_union] = ACTIONS(2328), + [anon_sym_COLON] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_else] = ACTIONS(2400), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_case] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_goto] = ACTIONS(2400), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_STAR_EQ] = ACTIONS(2392), + [anon_sym_SLASH_EQ] = ACTIONS(2392), + [anon_sym_PERCENT_EQ] = ACTIONS(2392), + [anon_sym_PLUS_EQ] = ACTIONS(2392), + [anon_sym_DASH_EQ] = ACTIONS(2392), + [anon_sym_LT_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_GT_EQ] = ACTIONS(2392), + [anon_sym_AMP_EQ] = ACTIONS(2392), + [anon_sym_CARET_EQ] = ACTIONS(2392), + [anon_sym_PIPE_EQ] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2396), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2409), + [anon_sym_PLUS_PLUS] = ACTIONS(2409), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_DASH_GT] = ACTIONS(2392), + [sym_number_literal] = ACTIONS(2400), + [sym_char_literal] = ACTIONS(2400), + [sym_string_literal] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2415), [sym_comment] = ACTIONS(121), }, - [771] = { - [sym__declarator] = STATE(932), - [sym__abstract_declarator] = STATE(258), + [775] = { + [sym__declarator] = STATE(936), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym__expression] = STATE(981), + [sym_abstract_array_declarator] = STATE(212), + [sym__expression] = STATE(985), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37463,28 +38009,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(2414), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(2449), [sym_comment] = ACTIONS(121), }, - [772] = { - [sym_type_qualifier] = STATE(195), - [sym__expression] = STATE(974), + [776] = { + [sym_type_qualifier] = STATE(199), + [sym__expression] = STATE(978), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37501,11 +38048,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [aux_sym_array_declarator_repeat1] = STATE(975), + [sym_concatenated_string] = STATE(53), + [aux_sym_array_declarator_repeat1] = STATE(979), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_RBRACK] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2451), + [anon_sym_RBRACK] = ACTIONS(2453), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -37519,13 +38067,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [773] = { - [sym_type_qualifier] = STATE(195), - [sym__expression] = STATE(841), + [777] = { + [sym_type_qualifier] = STATE(199), + [sym__expression] = STATE(845), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37542,18 +38090,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [aux_sym_array_declarator_repeat1] = STATE(970), + [sym_concatenated_string] = STATE(53), + [aux_sym_array_declarator_repeat1] = STATE(974), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_extern] = ACTIONS(159), [anon_sym_STAR] = ACTIONS(315), [anon_sym_static] = ACTIONS(159), - [anon_sym_RBRACK] = ACTIONS(2420), + [anon_sym_RBRACK] = ACTIONS(2455), [anon_sym_typedef] = ACTIONS(159), [anon_sym_auto] = ACTIONS(159), [anon_sym_register] = ACTIONS(159), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_restrict] = ACTIONS(2422), - [anon_sym_volatile] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_restrict] = ACTIONS(2457), + [anon_sym_volatile] = ACTIONS(2457), [sym_function_specifier] = ACTIONS(159), [anon_sym_unsigned] = ACTIONS(159), [anon_sym_long] = ACTIONS(159), @@ -37571,58 +38120,58 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(2425), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(2460), [sym_comment] = ACTIONS(121), }, - [774] = { - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RPAREN] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_RBRACK] = ACTIONS(555), - [anon_sym_EQ] = ACTIONS(2462), - [anon_sym_COLON] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(557), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(557), - [anon_sym_DASH] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(2469), - [anon_sym_DASH_GT] = ACTIONS(555), + [778] = { + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(2497), + [anon_sym_COLON] = ACTIONS(2474), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(2504), + [anon_sym_DASH_GT] = ACTIONS(559), [sym_comment] = ACTIONS(121), }, - [775] = { - [sym__expression] = STATE(967), + [779] = { + [sym__expression] = STATE(971), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37639,74 +38188,75 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(968), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_initializer_list] = STATE(972), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [776] = { - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_typedef] = ACTIONS(2474), - [anon_sym_auto] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_restrict] = ACTIONS(2474), - [anon_sym_volatile] = ACTIONS(2474), - [sym_function_specifier] = ACTIONS(2474), - [anon_sym_unsigned] = ACTIONS(2474), - [anon_sym_long] = ACTIONS(2474), - [anon_sym_short] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_struct] = ACTIONS(2474), - [anon_sym_union] = ACTIONS(2474), - [sym_identifier] = ACTIONS(2477), + [780] = { + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_auto] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_restrict] = ACTIONS(2509), + [anon_sym_volatile] = ACTIONS(2509), + [sym_function_specifier] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2509), + [anon_sym_long] = ACTIONS(2509), + [anon_sym_short] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2512), [sym_comment] = ACTIONS(121), }, - [777] = { - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_RPAREN] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [anon_sym_COLON] = ACTIONS(2480), - [sym_identifier] = ACTIONS(2486), + [781] = { + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_COMMA] = ACTIONS(2515), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_unsigned] = ACTIONS(2518), + [anon_sym_long] = ACTIONS(2518), + [anon_sym_short] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2521), [sym_comment] = ACTIONS(121), }, - [778] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(964), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(965), - [sym_comma_expression] = STATE(481), + [782] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(968), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(969), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37723,41 +38273,42 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(121), }, - [779] = { - [anon_sym_LPAREN] = ACTIONS(2491), + [783] = { + [anon_sym_LPAREN] = ACTIONS(2526), [sym_comment] = ACTIONS(121), }, - [780] = { - [sym__expression] = STATE(958), + [784] = { + [sym__expression] = STATE(962), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37774,24 +38325,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [781] = { - [sym__expression] = STATE(854), + [785] = { + [sym__expression] = STATE(858), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37808,24 +38360,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [782] = { - [sym__expression] = STATE(957), + [786] = { + [sym__expression] = STATE(961), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37842,24 +38395,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [783] = { - [sym__expression] = STATE(956), + [787] = { + [sym__expression] = STATE(960), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37876,24 +38430,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [784] = { - [sym__expression] = STATE(955), + [788] = { + [sym__expression] = STATE(959), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37910,24 +38465,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [785] = { - [sym__expression] = STATE(853), + [789] = { + [sym__expression] = STATE(857), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37944,24 +38500,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [786] = { - [sym__expression] = STATE(954), + [790] = { + [sym__expression] = STATE(958), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -37978,24 +38535,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [787] = { - [sym__expression] = STATE(953), + [791] = { + [sym__expression] = STATE(957), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -38012,24 +38570,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [788] = { - [sym__expression] = STATE(952), + [792] = { + [sym__expression] = STATE(956), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -38046,24 +38605,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [789] = { - [sym__expression] = STATE(951), + [793] = { + [sym__expression] = STATE(955), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -38080,24 +38640,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [790] = { - [sym__expression] = STATE(950), + [794] = { + [sym__expression] = STATE(954), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -38114,24 +38675,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [791] = { - [sym__expression] = STATE(852), + [795] = { + [sym__expression] = STATE(856), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -38148,24 +38710,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [792] = { - [sym__expression] = STATE(855), + [796] = { + [sym__expression] = STATE(859), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -38182,59 +38745,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_COMMA] = ACTIONS(451), - [anon_sym_RPAREN] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(451), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_STAR] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_RBRACK] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_COLON] = ACTIONS(451), - [anon_sym_QMARK] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_sizeof] = ACTIONS(2412), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_DASH_GT] = ACTIONS(451), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(455), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_SEMI] = ACTIONS(455), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_RBRACK] = ACTIONS(455), + [anon_sym_EQ] = ACTIONS(457), + [anon_sym_COLON] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(455), + [anon_sym_SLASH_EQ] = ACTIONS(455), + [anon_sym_PERCENT_EQ] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(455), + [anon_sym_DASH_EQ] = ACTIONS(455), + [anon_sym_LT_LT_EQ] = ACTIONS(455), + [anon_sym_GT_GT_EQ] = ACTIONS(455), + [anon_sym_AMP_EQ] = ACTIONS(455), + [anon_sym_CARET_EQ] = ACTIONS(455), + [anon_sym_PIPE_EQ] = ACTIONS(455), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_PIPE_PIPE] = ACTIONS(455), + [anon_sym_AMP_AMP] = ACTIONS(455), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(457), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(455), + [anon_sym_GT_EQ] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(457), + [anon_sym_PERCENT] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_sizeof] = ACTIONS(2447), + [anon_sym_DOT] = ACTIONS(455), + [anon_sym_DASH_GT] = ACTIONS(455), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [793] = { - [sym__expression] = STATE(947), + [797] = { + [sym__expression] = STATE(951), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -38251,34 +38815,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [794] = { - [sym_identifier] = ACTIONS(2509), + [798] = { + [sym_identifier] = ACTIONS(2544), [sym_comment] = ACTIONS(121), }, - [795] = { - [sym_function_definition] = STATE(726), - [sym_declaration] = STATE(726), - [sym__declaration_specifiers] = STATE(727), - [sym_declaration_list] = STATE(726), + [799] = { + [sym_function_definition] = STATE(730), + [sym_declaration] = STATE(730), + [sym__declaration_specifiers] = STATE(731), + [sym_declaration_list] = STATE(730), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(728), + [sym__type_specifier] = STATE(732), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), @@ -38286,85 +38851,87 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [ts_builtin_sym_end] = ACTIONS(1779), - [anon_sym_POUNDinclude] = ACTIONS(1781), - [anon_sym_POUNDdefine] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_POUNDifdef] = ACTIONS(1781), - [anon_sym_POUNDifndef] = ACTIONS(1781), - [anon_sym_POUNDendif] = ACTIONS(1781), - [anon_sym_POUNDelse] = ACTIONS(1781), - [sym_preproc_directive] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_RBRACK] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_auto] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_restrict] = ACTIONS(2517), - [anon_sym_volatile] = ACTIONS(2517), - [sym_function_specifier] = ACTIONS(2520), - [anon_sym_unsigned] = ACTIONS(2523), - [anon_sym_long] = ACTIONS(2523), - [anon_sym_short] = ACTIONS(2523), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2529), - [anon_sym_union] = ACTIONS(2532), - [anon_sym_COLON] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DASH_GT] = ACTIONS(389), - [sym_identifier] = ACTIONS(2535), + [aux_sym_concatenated_string_repeat1] = STATE(194), + [ts_builtin_sym_end] = ACTIONS(1797), + [anon_sym_POUNDinclude] = ACTIONS(1799), + [anon_sym_POUNDdefine] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_COMMA] = ACTIONS(2546), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_POUNDifdef] = ACTIONS(1799), + [anon_sym_POUNDifndef] = ACTIONS(1799), + [anon_sym_POUNDendif] = ACTIONS(1799), + [anon_sym_POUNDelse] = ACTIONS(1799), + [sym_preproc_directive] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_extern] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_static] = ACTIONS(2550), + [anon_sym_RBRACK] = ACTIONS(2546), + [anon_sym_EQ] = ACTIONS(2558), + [anon_sym_typedef] = ACTIONS(2550), + [anon_sym_auto] = ACTIONS(2550), + [anon_sym_register] = ACTIONS(2550), + [anon_sym_const] = ACTIONS(2562), + [anon_sym_restrict] = ACTIONS(2562), + [anon_sym_volatile] = ACTIONS(2562), + [sym_function_specifier] = ACTIONS(2565), + [anon_sym_unsigned] = ACTIONS(2568), + [anon_sym_long] = ACTIONS(2568), + [anon_sym_short] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2574), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_COLON] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2546), + [anon_sym_STAR_EQ] = ACTIONS(2546), + [anon_sym_SLASH_EQ] = ACTIONS(2546), + [anon_sym_PERCENT_EQ] = ACTIONS(2546), + [anon_sym_PLUS_EQ] = ACTIONS(2546), + [anon_sym_DASH_EQ] = ACTIONS(2546), + [anon_sym_LT_LT_EQ] = ACTIONS(2546), + [anon_sym_GT_GT_EQ] = ACTIONS(2546), + [anon_sym_AMP_EQ] = ACTIONS(2546), + [anon_sym_CARET_EQ] = ACTIONS(2546), + [anon_sym_PIPE_EQ] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_SLASH] = ACTIONS(2558), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_DOT] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2546), + [sym_string_literal] = ACTIONS(2580), + [sym_identifier] = ACTIONS(2584), [sym_comment] = ACTIONS(121), }, - [796] = { + [800] = { [sym__top_level_item] = STATE(16), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), [sym_preproc_def] = STATE(18), [sym_preproc_function_def] = STATE(18), - [sym_preproc_params] = STATE(747), + [sym_preproc_params] = STATE(751), [sym_preproc_call] = STATE(18), [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(737), + [sym_preproc_else] = STATE(741), [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym__declaration_specifiers] = STATE(19), @@ -38378,31 +38945,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_union_specifier] = STATE(21), [sym__empty_declaration] = STATE(17), [sym_macro_type_specifier] = STATE(21), - [aux_sym_translation_unit_repeat1] = STATE(738), - [aux_sym_preproc_params_repeat1] = STATE(755), + [aux_sym_translation_unit_repeat1] = STATE(742), + [aux_sym_preproc_params_repeat1] = STATE(759), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), [anon_sym_POUNDinclude] = ACTIONS(125), [anon_sym_POUNDdefine] = ACTIONS(127), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2561), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_COMMA] = ACTIONS(2597), + [anon_sym_RPAREN] = ACTIONS(2610), [anon_sym_POUNDifdef] = ACTIONS(129), [anon_sym_POUNDifndef] = ACTIONS(129), - [anon_sym_POUNDendif] = ACTIONS(1669), - [anon_sym_POUNDelse] = ACTIONS(1671), + [anon_sym_POUNDendif] = ACTIONS(1687), + [anon_sym_POUNDelse] = ACTIONS(1689), [sym_preproc_directive] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2622), [anon_sym_extern] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2647), [anon_sym_static] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_RBRACK] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2660), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), [anon_sym_register] = ACTIONS(135), @@ -38416,104 +38983,104 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(2617), - [anon_sym_QMARK] = ACTIONS(2608), - [anon_sym_STAR_EQ] = ACTIONS(2608), - [anon_sym_SLASH_EQ] = ACTIONS(2608), - [anon_sym_PERCENT_EQ] = ACTIONS(2608), - [anon_sym_PLUS_EQ] = ACTIONS(2608), - [anon_sym_DASH_EQ] = ACTIONS(2608), - [anon_sym_LT_LT_EQ] = ACTIONS(2608), - [anon_sym_GT_GT_EQ] = ACTIONS(2608), - [anon_sym_AMP_EQ] = ACTIONS(2608), - [anon_sym_CARET_EQ] = ACTIONS(2608), - [anon_sym_PIPE_EQ] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(2627), - [anon_sym_CARET] = ACTIONS(2627), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2627), - [anon_sym_GT] = ACTIONS(2627), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_LT_LT] = ACTIONS(2627), - [anon_sym_GT_GT] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_SLASH] = ACTIONS(2627), - [anon_sym_PERCENT] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DOT] = ACTIONS(2630), - [anon_sym_DASH_GT] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_PERCENT_EQ] = ACTIONS(2657), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_CARET_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_CARET] = ACTIONS(2676), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_GT] = ACTIONS(2676), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT] = ACTIONS(2676), + [anon_sym_GT_GT] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2676), + [anon_sym_PERCENT] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2683), [sym_comment] = ACTIONS(121), }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [anon_sym_POUNDinclude] = ACTIONS(2644), - [anon_sym_POUNDdefine] = ACTIONS(2644), - [anon_sym_POUNDifdef] = ACTIONS(2644), - [anon_sym_POUNDifndef] = ACTIONS(2644), - [anon_sym_POUNDendif] = ACTIONS(2644), - [anon_sym_POUNDelse] = ACTIONS(2644), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2644), - [anon_sym_auto] = ACTIONS(2644), - [anon_sym_register] = ACTIONS(2644), - [anon_sym_const] = ACTIONS(2644), - [anon_sym_restrict] = ACTIONS(2644), - [anon_sym_volatile] = ACTIONS(2644), - [sym_function_specifier] = ACTIONS(2644), - [anon_sym_unsigned] = ACTIONS(2644), - [anon_sym_long] = ACTIONS(2644), - [anon_sym_short] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_struct] = ACTIONS(2644), - [anon_sym_union] = ACTIONS(2644), - [sym_identifier] = ACTIONS(2647), + [801] = { + [ts_builtin_sym_end] = ACTIONS(2690), + [anon_sym_POUNDinclude] = ACTIONS(2693), + [anon_sym_POUNDdefine] = ACTIONS(2693), + [anon_sym_POUNDifdef] = ACTIONS(2693), + [anon_sym_POUNDifndef] = ACTIONS(2693), + [anon_sym_POUNDendif] = ACTIONS(2693), + [anon_sym_POUNDelse] = ACTIONS(2693), + [sym_preproc_directive] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_auto] = ACTIONS(2693), + [anon_sym_register] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_restrict] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2693), + [sym_function_specifier] = ACTIONS(2693), + [anon_sym_unsigned] = ACTIONS(2693), + [anon_sym_long] = ACTIONS(2693), + [anon_sym_short] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2696), [sym_comment] = ACTIONS(121), }, - [798] = { - [anon_sym_POUNDendif] = ACTIONS(2650), + [802] = { + [anon_sym_POUNDendif] = ACTIONS(2699), [sym_comment] = ACTIONS(121), }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(2652), - [anon_sym_POUNDinclude] = ACTIONS(2655), - [anon_sym_POUNDdefine] = ACTIONS(2655), - [anon_sym_POUNDifdef] = ACTIONS(2655), - [anon_sym_POUNDifndef] = ACTIONS(2655), - [anon_sym_POUNDendif] = ACTIONS(2655), - [anon_sym_POUNDelse] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2658), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2652), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_auto] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [sym_function_specifier] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [sym_identifier] = ACTIONS(2658), + [803] = { + [ts_builtin_sym_end] = ACTIONS(2701), + [anon_sym_POUNDinclude] = ACTIONS(2704), + [anon_sym_POUNDdefine] = ACTIONS(2704), + [anon_sym_POUNDifdef] = ACTIONS(2704), + [anon_sym_POUNDifndef] = ACTIONS(2704), + [anon_sym_POUNDendif] = ACTIONS(2704), + [anon_sym_POUNDelse] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2707), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_auto] = ACTIONS(2704), + [anon_sym_register] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_restrict] = ACTIONS(2704), + [anon_sym_volatile] = ACTIONS(2704), + [sym_function_specifier] = ACTIONS(2704), + [anon_sym_unsigned] = ACTIONS(2704), + [anon_sym_long] = ACTIONS(2704), + [anon_sym_short] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2707), [sym_comment] = ACTIONS(121), }, - [800] = { - [sym__expression] = STATE(703), + [804] = { + [sym__expression] = STATE(707), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -38530,61 +39097,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [ts_builtin_sym_end] = ACTIONS(2652), - [anon_sym_POUNDinclude] = ACTIONS(2655), - [anon_sym_POUNDdefine] = ACTIONS(2655), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_POUNDifdef] = ACTIONS(2655), - [anon_sym_POUNDifndef] = ACTIONS(2655), - [anon_sym_POUNDendif] = ACTIONS(2655), - [anon_sym_POUNDelse] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_RBRACE] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_auto] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [sym_function_specifier] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2686), - [anon_sym_case] = ACTIONS(2686), - [anon_sym_default] = ACTIONS(2686), - [anon_sym_while] = ACTIONS(2686), - [anon_sym_do] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2686), - [anon_sym_return] = ACTIONS(2686), - [anon_sym_break] = ACTIONS(2686), - [anon_sym_continue] = ACTIONS(2686), - [anon_sym_goto] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2709), - [sym_char_literal] = ACTIONS(2709), - [sym_string_literal] = ACTIONS(2709), - [sym_identifier] = ACTIONS(2713), + [sym_concatenated_string] = STATE(53), + [ts_builtin_sym_end] = ACTIONS(2701), + [anon_sym_POUNDinclude] = ACTIONS(2704), + [anon_sym_POUNDdefine] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_POUNDifdef] = ACTIONS(2704), + [anon_sym_POUNDifndef] = ACTIONS(2704), + [anon_sym_POUNDendif] = ACTIONS(2704), + [anon_sym_POUNDelse] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_extern] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_typedef] = ACTIONS(2718), + [anon_sym_auto] = ACTIONS(2718), + [anon_sym_register] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_restrict] = ACTIONS(2718), + [anon_sym_volatile] = ACTIONS(2718), + [sym_function_specifier] = ACTIONS(2718), + [anon_sym_unsigned] = ACTIONS(2718), + [anon_sym_long] = ACTIONS(2718), + [anon_sym_short] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_union] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2735), + [anon_sym_default] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_do] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_goto] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_sizeof] = ACTIONS(2754), + [sym_number_literal] = ACTIONS(2758), + [sym_char_literal] = ACTIONS(2758), + [sym_string_literal] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2766), [sym_comment] = ACTIONS(121), }, - [801] = { - [sym__type_specifier] = STATE(934), + [805] = { + [sym__type_specifier] = STATE(938), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), @@ -38600,383 +39168,383 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [802] = { - [sym_compound_statement] = STATE(927), - [aux_sym_declaration_repeat1] = STATE(821), - [aux_sym_struct_declaration_repeat1] = STATE(824), - [anon_sym_LPAREN] = ACTIONS(2719), - [anon_sym_COMMA] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym_COLON] = ACTIONS(2752), - [sym_comment] = ACTIONS(121), - }, - [803] = { - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2760), - [anon_sym_RPAREN] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2771), - [sym_comment] = ACTIONS(121), - }, - [804] = { - [aux_sym_declaration_repeat1] = STATE(821), - [anon_sym_COMMA] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2778), - [sym_comment] = ACTIONS(121), - }, - [805] = { - [ts_builtin_sym_end] = ACTIONS(2782), - [anon_sym_POUNDinclude] = ACTIONS(2785), - [anon_sym_POUNDdefine] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_POUNDifdef] = ACTIONS(2785), - [anon_sym_POUNDifndef] = ACTIONS(2785), - [anon_sym_POUNDendif] = ACTIONS(2785), - [anon_sym_POUNDelse] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2788), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2791), - [anon_sym_auto] = ACTIONS(2791), - [anon_sym_register] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_restrict] = ACTIONS(2791), - [anon_sym_volatile] = ACTIONS(2791), - [sym_function_specifier] = ACTIONS(2791), - [anon_sym_unsigned] = ACTIONS(2791), - [anon_sym_long] = ACTIONS(2791), - [anon_sym_short] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_union] = ACTIONS(2791), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1229), - [sym_number_literal] = ACTIONS(1229), - [sym_char_literal] = ACTIONS(1229), - [sym_string_literal] = ACTIONS(1229), - [sym_identifier] = ACTIONS(2799), - [sym_comment] = ACTIONS(121), - }, [806] = { - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2474), - [anon_sym_auto] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_restrict] = ACTIONS(2806), - [anon_sym_volatile] = ACTIONS(2806), - [sym_function_specifier] = ACTIONS(2474), - [anon_sym_unsigned] = ACTIONS(2806), - [anon_sym_long] = ACTIONS(2806), - [anon_sym_short] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(2811), - [sym_char_literal] = ACTIONS(2811), - [sym_string_literal] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2814), + [sym_compound_statement] = STATE(931), + [aux_sym_declaration_repeat1] = STATE(825), + [aux_sym_struct_declaration_repeat1] = STATE(828), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_COMMA] = ACTIONS(2775), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_EQ] = ACTIONS(2802), + [anon_sym_COLON] = ACTIONS(2805), [sym_comment] = ACTIONS(121), }, [807] = { - [sym__declarator] = STATE(920), - [sym__abstract_declarator] = STATE(921), - [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), - [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), - [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym_init_declarator] = STATE(922), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(2819), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_LBRACK] = ACTIONS(643), - [anon_sym_COLON] = ACTIONS(2831), - [sym_identifier] = ACTIONS(226), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_COMMA] = ACTIONS(2813), + [anon_sym_RPAREN] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2824), [sym_comment] = ACTIONS(121), }, [808] = { - [anon_sym_COMMA] = ACTIONS(2833), - [anon_sym_RBRACE] = ACTIONS(2835), + [aux_sym_declaration_repeat1] = STATE(825), + [anon_sym_COMMA] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2831), [sym_comment] = ACTIONS(121), }, [809] = { - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_restrict] = ACTIONS(2840), - [anon_sym_volatile] = ACTIONS(2840), - [anon_sym_unsigned] = ACTIONS(2840), - [anon_sym_long] = ACTIONS(2840), - [anon_sym_short] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2843), + [ts_builtin_sym_end] = ACTIONS(2835), + [anon_sym_POUNDinclude] = ACTIONS(2838), + [anon_sym_POUNDdefine] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_POUNDifdef] = ACTIONS(2838), + [anon_sym_POUNDifndef] = ACTIONS(2838), + [anon_sym_POUNDendif] = ACTIONS(2838), + [anon_sym_POUNDelse] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_auto] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [sym_function_specifier] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1247), + [sym_char_literal] = ACTIONS(1247), + [sym_string_literal] = ACTIONS(1247), + [sym_identifier] = ACTIONS(2852), [sym_comment] = ACTIONS(121), }, [810] = { - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_RBRACK] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_auto] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_restrict] = ACTIONS(2859), + [anon_sym_volatile] = ACTIONS(2859), + [sym_function_specifier] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2859), + [anon_sym_long] = ACTIONS(2859), + [anon_sym_short] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2856), + [anon_sym_sizeof] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2864), + [sym_char_literal] = ACTIONS(2864), + [sym_string_literal] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2867), [sym_comment] = ACTIONS(121), }, [811] = { - [anon_sym_RPAREN] = ACTIONS(2849), + [sym__declarator] = STATE(924), + [sym__abstract_declarator] = STATE(925), + [sym_pointer_declarator] = STATE(32), + [sym_abstract_pointer_declarator] = STATE(212), + [sym_function_declarator] = STATE(32), + [sym_abstract_function_declarator] = STATE(212), + [sym_array_declarator] = STATE(32), + [sym_abstract_array_declarator] = STATE(212), + [sym_init_declarator] = STATE(926), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(661), + [anon_sym_COLON] = ACTIONS(2884), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [812] = { - [aux_sym_parameter_type_list_repeat1] = STATE(228), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2888), [sym_comment] = ACTIONS(121), }, [813] = { - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2874), - [anon_sym_auto] = ACTIONS(2874), - [anon_sym_register] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_restrict] = ACTIONS(2874), - [anon_sym_volatile] = ACTIONS(2874), - [sym_function_specifier] = ACTIONS(2874), - [anon_sym_unsigned] = ACTIONS(2874), - [anon_sym_long] = ACTIONS(2874), - [anon_sym_short] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2874), - [anon_sym_case] = ACTIONS(2874), - [anon_sym_default] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2903), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_goto] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_TILDE] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_sizeof] = ACTIONS(2874), - [sym_number_literal] = ACTIONS(2874), - [sym_char_literal] = ACTIONS(2874), - [sym_string_literal] = ACTIONS(2874), - [sym_identifier] = ACTIONS(2919), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2893), + [anon_sym_restrict] = ACTIONS(2893), + [anon_sym_volatile] = ACTIONS(2893), + [anon_sym_unsigned] = ACTIONS(2893), + [anon_sym_long] = ACTIONS(2893), + [anon_sym_short] = ACTIONS(2893), + [anon_sym_enum] = ACTIONS(2893), + [anon_sym_struct] = ACTIONS(2893), + [anon_sym_union] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2896), [sym_comment] = ACTIONS(121), }, [814] = { - [aux_sym_for_statement_repeat1] = STATE(825), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_RBRACE] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_EQ] = ACTIONS(3077), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_LT_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_GT_EQ] = ACTIONS(3125), - [anon_sym_AMP_EQ] = ACTIONS(3125), - [anon_sym_CARET_EQ] = ACTIONS(3125), - [anon_sym_PIPE_EQ] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_DASH_GT] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2899), [sym_comment] = ACTIONS(121), }, [815] = { - [anon_sym_RPAREN] = ACTIONS(3269), - [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(2902), [sym_comment] = ACTIONS(121), }, [816] = { - [anon_sym_RPAREN] = ACTIONS(3275), + [aux_sym_parameter_type_list_repeat1] = STATE(232), + [anon_sym_COMMA] = ACTIONS(2904), + [anon_sym_RPAREN] = ACTIONS(2908), [sym_comment] = ACTIONS(121), }, [817] = { - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(915), - [anon_sym_RBRACK] = ACTIONS(915), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(915), - [anon_sym_STAR_EQ] = ACTIONS(915), - [anon_sym_SLASH_EQ] = ACTIONS(915), - [anon_sym_PERCENT_EQ] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(915), - [anon_sym_DASH_EQ] = ACTIONS(915), - [anon_sym_LT_LT_EQ] = ACTIONS(915), - [anon_sym_GT_GT_EQ] = ACTIONS(915), - [anon_sym_AMP_EQ] = ACTIONS(915), - [anon_sym_CARET_EQ] = ACTIONS(915), - [anon_sym_PIPE_EQ] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(915), - [anon_sym_BANG_EQ] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(915), - [anon_sym_LT_LT] = ACTIONS(917), - [anon_sym_GT_GT] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_PERCENT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DASH_GT] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2912), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_auto] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [sym_function_specifier] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_else] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_goto] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2912), + [anon_sym_TILDE] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2927), + [sym_number_literal] = ACTIONS(2927), + [sym_char_literal] = ACTIONS(2927), + [sym_string_literal] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2972), [sym_comment] = ACTIONS(121), }, [818] = { - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_EQ] = ACTIONS(3291), - [anon_sym_DOT] = ACTIONS(3291), + [aux_sym_for_statement_repeat1] = STATE(829), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_RBRACK] = ACTIONS(3114), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_COLON] = ACTIONS(3146), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3178), + [anon_sym_SLASH_EQ] = ACTIONS(3178), + [anon_sym_PERCENT_EQ] = ACTIONS(3178), + [anon_sym_PLUS_EQ] = ACTIONS(3178), + [anon_sym_DASH_EQ] = ACTIONS(3178), + [anon_sym_LT_LT_EQ] = ACTIONS(3178), + [anon_sym_GT_GT_EQ] = ACTIONS(3178), + [anon_sym_AMP_EQ] = ACTIONS(3178), + [anon_sym_CARET_EQ] = ACTIONS(3178), + [anon_sym_PIPE_EQ] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_CARET] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LT_LT] = ACTIONS(3274), + [anon_sym_GT_GT] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_DASH_GT] = ACTIONS(3306), [sym_comment] = ACTIONS(121), }, [819] = { + [anon_sym_RPAREN] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3325), + [sym_comment] = ACTIONS(121), + }, + [820] = { + [anon_sym_RPAREN] = ACTIONS(3328), + [sym_comment] = ACTIONS(121), + }, + [821] = { + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_RBRACK] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_COLON] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(933), + [anon_sym_STAR_EQ] = ACTIONS(933), + [anon_sym_SLASH_EQ] = ACTIONS(933), + [anon_sym_PERCENT_EQ] = ACTIONS(933), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), + [anon_sym_LT_LT_EQ] = ACTIONS(933), + [anon_sym_GT_GT_EQ] = ACTIONS(933), + [anon_sym_AMP_EQ] = ACTIONS(933), + [anon_sym_CARET_EQ] = ACTIONS(933), + [anon_sym_PIPE_EQ] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DASH_GT] = ACTIONS(933), + [sym_comment] = ACTIONS(121), + }, + [822] = { + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [sym_comment] = ACTIONS(121), + }, + [823] = { [ts_builtin_sym_end] = ACTIONS(208), [anon_sym_POUNDinclude] = ACTIONS(210), [anon_sym_POUNDdefine] = ACTIONS(210), - [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2723), [anon_sym_POUNDifdef] = ACTIONS(210), [anon_sym_POUNDifndef] = ACTIONS(210), [anon_sym_POUNDendif] = ACTIONS(210), [anon_sym_POUNDelse] = ACTIONS(210), [sym_preproc_directive] = ACTIONS(212), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_auto] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [sym_function_specifier] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2686), - [anon_sym_case] = ACTIONS(2686), - [anon_sym_default] = ACTIONS(2686), - [anon_sym_while] = ACTIONS(2686), - [anon_sym_do] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2686), - [anon_sym_return] = ACTIONS(2686), - [anon_sym_break] = ACTIONS(2686), - [anon_sym_continue] = ACTIONS(2686), - [anon_sym_goto] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_sizeof] = ACTIONS(2686), - [sym_number_literal] = ACTIONS(2686), - [sym_char_literal] = ACTIONS(2686), - [sym_string_literal] = ACTIONS(2686), - [sym_identifier] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_extern] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_typedef] = ACTIONS(3347), + [anon_sym_auto] = ACTIONS(3347), + [anon_sym_register] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_restrict] = ACTIONS(3347), + [anon_sym_volatile] = ACTIONS(3347), + [sym_function_specifier] = ACTIONS(3347), + [anon_sym_unsigned] = ACTIONS(3347), + [anon_sym_long] = ACTIONS(3347), + [anon_sym_short] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), + [anon_sym_struct] = ACTIONS(3347), + [anon_sym_union] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2735), + [anon_sym_default] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_do] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_goto] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_PLUS] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2735), + [sym_number_literal] = ACTIONS(2735), + [sym_char_literal] = ACTIONS(2735), + [sym_string_literal] = ACTIONS(2735), + [sym_identifier] = ACTIONS(3355), [sym_comment] = ACTIONS(121), }, - [820] = { + [824] = { [sym__top_level_item] = STATE(28), [sym__preproc_statement] = STATE(17), [sym_preproc_include] = STATE(18), @@ -38984,7 +39552,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_function_def] = STATE(18), [sym_preproc_call] = STATE(18), [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(740), + [sym_preproc_else] = STATE(744), [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym__declaration_specifiers] = STATE(19), @@ -39005,11 +39573,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(127), [anon_sym_POUNDifdef] = ACTIONS(129), [anon_sym_POUNDifndef] = ACTIONS(129), - [anon_sym_POUNDendif] = ACTIONS(3306), - [anon_sym_POUNDelse] = ACTIONS(1671), + [anon_sym_POUNDendif] = ACTIONS(3359), + [anon_sym_POUNDelse] = ACTIONS(1689), [sym_preproc_directive] = ACTIONS(131), [anon_sym_extern] = ACTIONS(133), - [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1673), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -39027,19 +39595,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [821] = { + [825] = { [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3362), [sym_comment] = ACTIONS(121), }, - [822] = { - [sym_type_qualifier] = STATE(202), - [sym__type_specifier] = STATE(840), + [826] = { + [sym_type_qualifier] = STATE(206), + [sym__type_specifier] = STATE(844), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(841), + [sym__expression] = STATE(845), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -39056,12 +39624,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(24), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_RBRACK] = ACTIONS(3313), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_RBRACK] = ACTIONS(3366), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -39081,22 +39650,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(3315), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(3368), [sym_comment] = ACTIONS(121), }, - [823] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [827] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(279), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3370), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -39109,26 +39678,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [824] = { - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_COLON] = ACTIONS(3321), + [828] = { + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_COLON] = ACTIONS(3374), [sym_comment] = ACTIONS(121), }, - [825] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(3323), + [829] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(3376), [sym_comment] = ACTIONS(121), }, - [826] = { - [sym_designator] = STATE(346), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_EQ] = ACTIONS(3325), - [anon_sym_DOT] = ACTIONS(385), + [830] = { + [sym_designator] = STATE(350), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym_DOT] = ACTIONS(387), [sym_comment] = ACTIONS(121), }, - [827] = { - [sym__expression] = STATE(828), + [831] = { + [sym__expression] = STATE(832), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -39145,87 +39714,88 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(381), - [anon_sym_PLUS_PLUS] = ACTIONS(381), - [anon_sym_sizeof] = ACTIONS(383), + [sym_initializer_list] = STATE(833), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [828] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [832] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [829] = { - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), + [833] = { + [anon_sym_COMMA] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), [sym_comment] = ACTIONS(121), }, - [830] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(831), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [834] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(835), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -39242,132 +39812,133 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(3333), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_SEMI] = ACTIONS(3386), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(609), - [anon_sym_GT_GT] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(609), - [anon_sym_PERCENT] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_sizeof] = ACTIONS(349), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(607), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_RBRACK] = ACTIONS(611), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym_COLON] = ACTIONS(611), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_STAR_EQ] = ACTIONS(611), + [anon_sym_SLASH_EQ] = ACTIONS(611), + [anon_sym_PERCENT_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [anon_sym_DASH_EQ] = ACTIONS(611), + [anon_sym_LT_LT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_EQ] = ACTIONS(611), + [anon_sym_AMP_EQ] = ACTIONS(611), + [anon_sym_CARET_EQ] = ACTIONS(611), + [anon_sym_PIPE_EQ] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_sizeof] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_DASH_GT] = ACTIONS(611), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [831] = { - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_extern] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_STAR] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_typedef] = ACTIONS(3349), - [anon_sym_auto] = ACTIONS(3349), - [anon_sym_register] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [sym_function_specifier] = ACTIONS(3349), - [anon_sym_unsigned] = ACTIONS(3349), - [anon_sym_long] = ACTIONS(3349), - [anon_sym_short] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3349), - [anon_sym_union] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_case] = ACTIONS(3349), - [anon_sym_default] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_goto] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_sizeof] = ACTIONS(3349), - [sym_number_literal] = ACTIONS(3349), - [sym_char_literal] = ACTIONS(3349), - [sym_string_literal] = ACTIONS(3349), - [sym_identifier] = ACTIONS(3353), + [835] = { + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym_extern] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_typedef] = ACTIONS(3402), + [anon_sym_auto] = ACTIONS(3402), + [anon_sym_register] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_restrict] = ACTIONS(3402), + [anon_sym_volatile] = ACTIONS(3402), + [sym_function_specifier] = ACTIONS(3402), + [anon_sym_unsigned] = ACTIONS(3402), + [anon_sym_long] = ACTIONS(3402), + [anon_sym_short] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_union] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_else] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_goto] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_sizeof] = ACTIONS(3402), + [sym_number_literal] = ACTIONS(3402), + [sym_char_literal] = ACTIONS(3402), + [sym_string_literal] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3406), [sym_comment] = ACTIONS(121), }, - [832] = { - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_restrict] = ACTIONS(3360), - [anon_sym_volatile] = ACTIONS(3360), - [anon_sym_unsigned] = ACTIONS(3360), - [anon_sym_long] = ACTIONS(3360), - [anon_sym_short] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(3360), - [anon_sym_union] = ACTIONS(3360), - [sym_identifier] = ACTIONS(3363), + [836] = { + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3413), + [anon_sym_restrict] = ACTIONS(3413), + [anon_sym_volatile] = ACTIONS(3413), + [anon_sym_unsigned] = ACTIONS(3413), + [anon_sym_long] = ACTIONS(3413), + [anon_sym_short] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), + [anon_sym_struct] = ACTIONS(3413), + [anon_sym_union] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3416), [sym_comment] = ACTIONS(121), }, - [833] = { - [sym__expression] = STATE(834), + [837] = { + [sym__expression] = STATE(838), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -39384,89 +39955,90 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [834] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [838] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [835] = { - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_restrict] = ACTIONS(3371), - [anon_sym_volatile] = ACTIONS(3371), - [anon_sym_unsigned] = ACTIONS(3371), - [anon_sym_long] = ACTIONS(3371), - [anon_sym_short] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_union] = ACTIONS(3371), - [sym_identifier] = ACTIONS(3374), + [839] = { + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_restrict] = ACTIONS(3424), + [anon_sym_volatile] = ACTIONS(3424), + [anon_sym_unsigned] = ACTIONS(3424), + [anon_sym_long] = ACTIONS(3424), + [anon_sym_short] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_union] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3427), [sym_comment] = ACTIONS(121), }, - [836] = { - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_STAR] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3377), - [sym_identifier] = ACTIONS(3382), + [840] = { + [anon_sym_LPAREN] = ACTIONS(3430), + [anon_sym_COMMA] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(3430), + [anon_sym_SEMI] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3430), + [anon_sym_COLON] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3435), [sym_comment] = ACTIONS(121), }, - [837] = { - [sym__expression] = STATE(844), + [841] = { + [sym__expression] = STATE(848), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -39483,6 +40055,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(315), @@ -39495,257 +40068,257 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [838] = { - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_RPAREN] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), + [842] = { + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_RPAREN] = ACTIONS(3440), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_EQ] = ACTIONS(3446), + [anon_sym_COLON] = ACTIONS(3446), [sym_comment] = ACTIONS(121), }, - [839] = { - [anon_sym_LPAREN] = ACTIONS(621), + [843] = { + [anon_sym_LPAREN] = ACTIONS(639), [anon_sym_RPAREN] = ACTIONS(196), [anon_sym_SEMI] = ACTIONS(196), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), [anon_sym_COLON] = ACTIONS(196), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_identifier] = ACTIONS(198), [sym_comment] = ACTIONS(121), }, - [840] = { - [sym__declarator] = STATE(284), - [sym__abstract_declarator] = STATE(207), + [844] = { + [sym__declarator] = STATE(288), + [sym__abstract_declarator] = STATE(211), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(643), - [anon_sym_COLON] = ACTIONS(815), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(661), + [anon_sym_COLON] = ACTIONS(833), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [841] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(3398), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [845] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [842] = { - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym_COMMA] = ACTIONS(3400), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_EQ] = ACTIONS(3406), - [anon_sym_COLON] = ACTIONS(3406), + [846] = { + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_RPAREN] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3459), [sym_comment] = ACTIONS(121), }, - [843] = { - [sym__declarator] = STATE(257), - [sym__abstract_declarator] = STATE(258), + [847] = { + [sym__declarator] = STATE(261), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(2399), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(2434), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [844] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(3412), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [848] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(3465), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [845] = { - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_COMMA] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), + [849] = { + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3467), + [anon_sym_RPAREN] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(761), [sym_comment] = ACTIONS(121), }, - [846] = { - [ts_builtin_sym_end] = ACTIONS(3418), - [anon_sym_POUNDinclude] = ACTIONS(3421), - [anon_sym_POUNDdefine] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3418), - [anon_sym_POUNDifdef] = ACTIONS(3421), - [anon_sym_POUNDifndef] = ACTIONS(3421), - [anon_sym_POUNDendif] = ACTIONS(3421), - [anon_sym_POUNDelse] = ACTIONS(3421), - [sym_preproc_directive] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym_extern] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_RBRACE] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_typedef] = ACTIONS(3421), - [anon_sym_auto] = ACTIONS(3421), - [anon_sym_register] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_restrict] = ACTIONS(3421), - [anon_sym_volatile] = ACTIONS(3421), - [sym_function_specifier] = ACTIONS(3421), - [anon_sym_unsigned] = ACTIONS(3421), - [anon_sym_long] = ACTIONS(3421), - [anon_sym_short] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3421), - [anon_sym_union] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_case] = ACTIONS(3421), - [anon_sym_default] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_goto] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_sizeof] = ACTIONS(3421), - [sym_number_literal] = ACTIONS(3421), - [sym_char_literal] = ACTIONS(3421), - [sym_string_literal] = ACTIONS(3421), - [sym_identifier] = ACTIONS(3424), + [850] = { + [ts_builtin_sym_end] = ACTIONS(3471), + [anon_sym_POUNDinclude] = ACTIONS(3474), + [anon_sym_POUNDdefine] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3471), + [anon_sym_POUNDifdef] = ACTIONS(3474), + [anon_sym_POUNDifndef] = ACTIONS(3474), + [anon_sym_POUNDendif] = ACTIONS(3474), + [anon_sym_POUNDelse] = ACTIONS(3474), + [sym_preproc_directive] = ACTIONS(3477), + [anon_sym_SEMI] = ACTIONS(3471), + [anon_sym_extern] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3471), + [anon_sym_RBRACE] = ACTIONS(3471), + [anon_sym_STAR] = ACTIONS(3471), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_typedef] = ACTIONS(3474), + [anon_sym_auto] = ACTIONS(3474), + [anon_sym_register] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_restrict] = ACTIONS(3474), + [anon_sym_volatile] = ACTIONS(3474), + [sym_function_specifier] = ACTIONS(3474), + [anon_sym_unsigned] = ACTIONS(3474), + [anon_sym_long] = ACTIONS(3474), + [anon_sym_short] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [anon_sym_struct] = ACTIONS(3474), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_case] = ACTIONS(3474), + [anon_sym_default] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_goto] = ACTIONS(3474), + [anon_sym_AMP] = ACTIONS(3471), + [anon_sym_BANG] = ACTIONS(3471), + [anon_sym_TILDE] = ACTIONS(3471), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3471), + [anon_sym_PLUS_PLUS] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(3474), + [sym_number_literal] = ACTIONS(3474), + [sym_char_literal] = ACTIONS(3474), + [sym_string_literal] = ACTIONS(3474), + [sym_identifier] = ACTIONS(3477), [sym_comment] = ACTIONS(121), }, - [847] = { - [sym__expression] = STATE(851), + [851] = { + [sym__expression] = STATE(855), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -39762,68 +40335,69 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_RPAREN] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_sizeof] = ACTIONS(2412), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3480), + [anon_sym_COMMA] = ACTIONS(3484), + [anon_sym_RPAREN] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(3487), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(3491), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(3497), + [anon_sym_PLUS_PLUS] = ACTIONS(3497), + [anon_sym_sizeof] = ACTIONS(2447), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(3447), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(3500), [sym_comment] = ACTIONS(121), }, - [848] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [852] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -39840,12 +40414,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(857), + [sym_type_name] = STATE(861), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -39855,22 +40430,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [849] = { - [sym__expression] = STATE(856), + [853] = { + [sym__expression] = STATE(860), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -39887,24 +40462,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [850] = { - [sym__expression] = STATE(855), + [854] = { + [sym__expression] = STATE(859), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -39921,298 +40497,299 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [851] = { - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_STAR_EQ] = ACTIONS(3465), - [anon_sym_SLASH_EQ] = ACTIONS(3465), - [anon_sym_PERCENT_EQ] = ACTIONS(3465), - [anon_sym_PLUS_EQ] = ACTIONS(3465), - [anon_sym_DASH_EQ] = ACTIONS(3465), - [anon_sym_LT_LT_EQ] = ACTIONS(3465), - [anon_sym_GT_GT_EQ] = ACTIONS(3465), - [anon_sym_AMP_EQ] = ACTIONS(3465), - [anon_sym_CARET_EQ] = ACTIONS(3465), - [anon_sym_PIPE_EQ] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3471), - [anon_sym_AMP_AMP] = ACTIONS(3471), - [anon_sym_PIPE] = ACTIONS(3468), - [anon_sym_CARET] = ACTIONS(3468), - [anon_sym_EQ_EQ] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_LT] = ACTIONS(3477), - [anon_sym_GT] = ACTIONS(3477), - [anon_sym_LT_EQ] = ACTIONS(3480), - [anon_sym_GT_EQ] = ACTIONS(3480), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_PERCENT] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DASH_GT] = ACTIONS(3489), + [855] = { + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(3512), + [anon_sym_COLON] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_STAR_EQ] = ACTIONS(3518), + [anon_sym_SLASH_EQ] = ACTIONS(3518), + [anon_sym_PERCENT_EQ] = ACTIONS(3518), + [anon_sym_PLUS_EQ] = ACTIONS(3518), + [anon_sym_DASH_EQ] = ACTIONS(3518), + [anon_sym_LT_LT_EQ] = ACTIONS(3518), + [anon_sym_GT_GT_EQ] = ACTIONS(3518), + [anon_sym_AMP_EQ] = ACTIONS(3518), + [anon_sym_CARET_EQ] = ACTIONS(3518), + [anon_sym_PIPE_EQ] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3524), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym_EQ_EQ] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3530), + [anon_sym_GT] = ACTIONS(3530), + [anon_sym_LT_EQ] = ACTIONS(3533), + [anon_sym_GT_EQ] = ACTIONS(3533), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_SLASH] = ACTIONS(3506), + [anon_sym_PERCENT] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3539), + [anon_sym_PLUS_PLUS] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_DASH_GT] = ACTIONS(3542), [sym_comment] = ACTIONS(121), }, - [852] = { - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(461), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(3495), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_RBRACK] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(3501), - [anon_sym_COLON] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(3504), - [anon_sym_STAR_EQ] = ACTIONS(3507), - [anon_sym_SLASH_EQ] = ACTIONS(3507), - [anon_sym_PERCENT_EQ] = ACTIONS(3507), - [anon_sym_PLUS_EQ] = ACTIONS(3507), - [anon_sym_DASH_EQ] = ACTIONS(3507), - [anon_sym_LT_LT_EQ] = ACTIONS(3507), - [anon_sym_GT_GT_EQ] = ACTIONS(3507), - [anon_sym_AMP_EQ] = ACTIONS(3507), - [anon_sym_CARET_EQ] = ACTIONS(3507), - [anon_sym_PIPE_EQ] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3510), - [anon_sym_PIPE_PIPE] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_PIPE] = ACTIONS(3510), - [anon_sym_CARET] = ACTIONS(3510), - [anon_sym_EQ_EQ] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3519), - [anon_sym_GT] = ACTIONS(3519), - [anon_sym_LT_EQ] = ACTIONS(3522), - [anon_sym_GT_EQ] = ACTIONS(3522), - [anon_sym_LT_LT] = ACTIONS(3525), - [anon_sym_GT_GT] = ACTIONS(3525), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_SLASH] = ACTIONS(3495), - [anon_sym_PERCENT] = ACTIONS(3495), - [anon_sym_DASH_DASH] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3528), - [anon_sym_DOT] = ACTIONS(3531), - [anon_sym_DASH_GT] = ACTIONS(3531), + [856] = { + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_EQ] = ACTIONS(3554), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(3557), + [anon_sym_STAR_EQ] = ACTIONS(3560), + [anon_sym_SLASH_EQ] = ACTIONS(3560), + [anon_sym_PERCENT_EQ] = ACTIONS(3560), + [anon_sym_PLUS_EQ] = ACTIONS(3560), + [anon_sym_DASH_EQ] = ACTIONS(3560), + [anon_sym_LT_LT_EQ] = ACTIONS(3560), + [anon_sym_GT_GT_EQ] = ACTIONS(3560), + [anon_sym_AMP_EQ] = ACTIONS(3560), + [anon_sym_CARET_EQ] = ACTIONS(3560), + [anon_sym_PIPE_EQ] = ACTIONS(3560), + [anon_sym_AMP] = ACTIONS(3563), + [anon_sym_PIPE_PIPE] = ACTIONS(3566), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_PIPE] = ACTIONS(3563), + [anon_sym_CARET] = ACTIONS(3563), + [anon_sym_EQ_EQ] = ACTIONS(3569), + [anon_sym_BANG_EQ] = ACTIONS(3569), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_LT_EQ] = ACTIONS(3575), + [anon_sym_GT_EQ] = ACTIONS(3575), + [anon_sym_LT_LT] = ACTIONS(3578), + [anon_sym_GT_GT] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3581), + [anon_sym_PLUS_PLUS] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3584), + [anon_sym_DASH_GT] = ACTIONS(3584), [sym_comment] = ACTIONS(121), }, - [853] = { - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_RBRACK] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(3546), - [anon_sym_STAR_EQ] = ACTIONS(3549), - [anon_sym_SLASH_EQ] = ACTIONS(3549), - [anon_sym_PERCENT_EQ] = ACTIONS(3549), - [anon_sym_PLUS_EQ] = ACTIONS(3549), - [anon_sym_DASH_EQ] = ACTIONS(3549), - [anon_sym_LT_LT_EQ] = ACTIONS(3549), - [anon_sym_GT_GT_EQ] = ACTIONS(3549), - [anon_sym_AMP_EQ] = ACTIONS(3549), - [anon_sym_CARET_EQ] = ACTIONS(3549), - [anon_sym_PIPE_EQ] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3552), - [anon_sym_PIPE_PIPE] = ACTIONS(3555), - [anon_sym_AMP_AMP] = ACTIONS(3555), - [anon_sym_PIPE] = ACTIONS(3552), - [anon_sym_CARET] = ACTIONS(3552), - [anon_sym_EQ_EQ] = ACTIONS(3558), - [anon_sym_BANG_EQ] = ACTIONS(3558), - [anon_sym_LT] = ACTIONS(3561), - [anon_sym_GT] = ACTIONS(3561), - [anon_sym_LT_EQ] = ACTIONS(3564), - [anon_sym_GT_EQ] = ACTIONS(3564), - [anon_sym_LT_LT] = ACTIONS(3567), - [anon_sym_GT_GT] = ACTIONS(3567), - [anon_sym_PLUS] = ACTIONS(3537), - [anon_sym_DASH] = ACTIONS(3537), - [anon_sym_SLASH] = ACTIONS(3537), - [anon_sym_PERCENT] = ACTIONS(3537), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_DASH_GT] = ACTIONS(3573), + [857] = { + [anon_sym_LPAREN] = ACTIONS(3587), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_RBRACK] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(3596), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(3599), + [anon_sym_STAR_EQ] = ACTIONS(3602), + [anon_sym_SLASH_EQ] = ACTIONS(3602), + [anon_sym_PERCENT_EQ] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3602), + [anon_sym_DASH_EQ] = ACTIONS(3602), + [anon_sym_LT_LT_EQ] = ACTIONS(3602), + [anon_sym_GT_GT_EQ] = ACTIONS(3602), + [anon_sym_AMP_EQ] = ACTIONS(3602), + [anon_sym_CARET_EQ] = ACTIONS(3602), + [anon_sym_PIPE_EQ] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_PIPE] = ACTIONS(3605), + [anon_sym_CARET] = ACTIONS(3605), + [anon_sym_EQ_EQ] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_GT] = ACTIONS(3614), + [anon_sym_LT_EQ] = ACTIONS(3617), + [anon_sym_GT_EQ] = ACTIONS(3617), + [anon_sym_LT_LT] = ACTIONS(3620), + [anon_sym_GT_GT] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_SLASH] = ACTIONS(3590), + [anon_sym_PERCENT] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_DOT] = ACTIONS(3626), + [anon_sym_DASH_GT] = ACTIONS(3626), [sym_comment] = ACTIONS(121), }, - [854] = { - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_COMMA] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(3579), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_RBRACK] = ACTIONS(485), - [anon_sym_EQ] = ACTIONS(3585), - [anon_sym_COLON] = ACTIONS(485), - [anon_sym_QMARK] = ACTIONS(3588), - [anon_sym_STAR_EQ] = ACTIONS(3591), - [anon_sym_SLASH_EQ] = ACTIONS(3591), - [anon_sym_PERCENT_EQ] = ACTIONS(3591), - [anon_sym_PLUS_EQ] = ACTIONS(3591), - [anon_sym_DASH_EQ] = ACTIONS(3591), - [anon_sym_LT_LT_EQ] = ACTIONS(3591), - [anon_sym_GT_GT_EQ] = ACTIONS(3591), - [anon_sym_AMP_EQ] = ACTIONS(3591), - [anon_sym_CARET_EQ] = ACTIONS(3591), - [anon_sym_PIPE_EQ] = ACTIONS(3591), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3597), - [anon_sym_AMP_AMP] = ACTIONS(3597), - [anon_sym_PIPE] = ACTIONS(3594), - [anon_sym_CARET] = ACTIONS(3594), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_GT] = ACTIONS(3603), - [anon_sym_LT_EQ] = ACTIONS(3606), - [anon_sym_GT_EQ] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3609), - [anon_sym_GT_GT] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3579), - [anon_sym_SLASH] = ACTIONS(3579), - [anon_sym_PERCENT] = ACTIONS(3579), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3615), - [anon_sym_DASH_GT] = ACTIONS(3615), + [858] = { + [anon_sym_LPAREN] = ACTIONS(3629), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_RBRACK] = ACTIONS(489), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_COLON] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_STAR_EQ] = ACTIONS(3644), + [anon_sym_SLASH_EQ] = ACTIONS(3644), + [anon_sym_PERCENT_EQ] = ACTIONS(3644), + [anon_sym_PLUS_EQ] = ACTIONS(3644), + [anon_sym_DASH_EQ] = ACTIONS(3644), + [anon_sym_LT_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_AMP_EQ] = ACTIONS(3644), + [anon_sym_CARET_EQ] = ACTIONS(3644), + [anon_sym_PIPE_EQ] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_PIPE] = ACTIONS(3647), + [anon_sym_CARET] = ACTIONS(3647), + [anon_sym_EQ_EQ] = ACTIONS(3653), + [anon_sym_BANG_EQ] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_GT] = ACTIONS(3656), + [anon_sym_LT_EQ] = ACTIONS(3659), + [anon_sym_GT_EQ] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3662), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(3632), + [anon_sym_PERCENT] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), [sym_comment] = ACTIONS(121), }, - [855] = { - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_STAR_EQ] = ACTIONS(3633), - [anon_sym_SLASH_EQ] = ACTIONS(3633), - [anon_sym_PERCENT_EQ] = ACTIONS(3633), - [anon_sym_PLUS_EQ] = ACTIONS(3633), - [anon_sym_DASH_EQ] = ACTIONS(3633), - [anon_sym_LT_LT_EQ] = ACTIONS(3633), - [anon_sym_GT_GT_EQ] = ACTIONS(3633), - [anon_sym_AMP_EQ] = ACTIONS(3633), - [anon_sym_CARET_EQ] = ACTIONS(3633), - [anon_sym_PIPE_EQ] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3642), - [anon_sym_BANG_EQ] = ACTIONS(3642), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3645), - [anon_sym_LT_EQ] = ACTIONS(3648), - [anon_sym_GT_EQ] = ACTIONS(3648), - [anon_sym_LT_LT] = ACTIONS(3651), - [anon_sym_GT_GT] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_DASH_GT] = ACTIONS(3657), + [859] = { + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_RBRACK] = ACTIONS(1017), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(1017), + [anon_sym_QMARK] = ACTIONS(3683), + [anon_sym_STAR_EQ] = ACTIONS(3686), + [anon_sym_SLASH_EQ] = ACTIONS(3686), + [anon_sym_PERCENT_EQ] = ACTIONS(3686), + [anon_sym_PLUS_EQ] = ACTIONS(3686), + [anon_sym_DASH_EQ] = ACTIONS(3686), + [anon_sym_LT_LT_EQ] = ACTIONS(3686), + [anon_sym_GT_GT_EQ] = ACTIONS(3686), + [anon_sym_AMP_EQ] = ACTIONS(3686), + [anon_sym_CARET_EQ] = ACTIONS(3686), + [anon_sym_PIPE_EQ] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(3689), + [anon_sym_CARET] = ACTIONS(3689), + [anon_sym_EQ_EQ] = ACTIONS(3695), + [anon_sym_BANG_EQ] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_GT] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3701), + [anon_sym_GT_EQ] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_DASH_GT] = ACTIONS(3710), [sym_comment] = ACTIONS(121), }, - [856] = { - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_RBRACK] = ACTIONS(1011), - [anon_sym_EQ] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(3672), - [anon_sym_STAR_EQ] = ACTIONS(3675), - [anon_sym_SLASH_EQ] = ACTIONS(3675), - [anon_sym_PERCENT_EQ] = ACTIONS(3675), - [anon_sym_PLUS_EQ] = ACTIONS(3675), - [anon_sym_DASH_EQ] = ACTIONS(3675), - [anon_sym_LT_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_GT_EQ] = ACTIONS(3675), - [anon_sym_AMP_EQ] = ACTIONS(3675), - [anon_sym_CARET_EQ] = ACTIONS(3675), - [anon_sym_PIPE_EQ] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3678), - [anon_sym_CARET] = ACTIONS(3678), - [anon_sym_EQ_EQ] = ACTIONS(3684), - [anon_sym_BANG_EQ] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(3687), - [anon_sym_GT] = ACTIONS(3687), - [anon_sym_LT_EQ] = ACTIONS(3690), - [anon_sym_GT_EQ] = ACTIONS(3690), - [anon_sym_LT_LT] = ACTIONS(3693), - [anon_sym_GT_GT] = ACTIONS(3693), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_DASH_GT] = ACTIONS(3699), + [860] = { + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_RBRACK] = ACTIONS(1029), + [anon_sym_EQ] = ACTIONS(3722), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_STAR_EQ] = ACTIONS(3728), + [anon_sym_SLASH_EQ] = ACTIONS(3728), + [anon_sym_PERCENT_EQ] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3728), + [anon_sym_DASH_EQ] = ACTIONS(3728), + [anon_sym_LT_LT_EQ] = ACTIONS(3728), + [anon_sym_GT_GT_EQ] = ACTIONS(3728), + [anon_sym_AMP_EQ] = ACTIONS(3728), + [anon_sym_CARET_EQ] = ACTIONS(3728), + [anon_sym_PIPE_EQ] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_PIPE] = ACTIONS(3731), + [anon_sym_CARET] = ACTIONS(3731), + [anon_sym_EQ_EQ] = ACTIONS(3737), + [anon_sym_BANG_EQ] = ACTIONS(3737), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_LT_EQ] = ACTIONS(3743), + [anon_sym_GT_EQ] = ACTIONS(3743), + [anon_sym_LT_LT] = ACTIONS(3746), + [anon_sym_GT_GT] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3749), + [anon_sym_PLUS_PLUS] = ACTIONS(3749), + [anon_sym_DOT] = ACTIONS(3752), + [anon_sym_DASH_GT] = ACTIONS(3752), [sym_comment] = ACTIONS(121), }, - [857] = { - [anon_sym_RPAREN] = ACTIONS(3702), + [861] = { + [anon_sym_RPAREN] = ACTIONS(3755), [sym_comment] = ACTIONS(121), }, - [858] = { - [sym__expression] = STATE(851), + [862] = { + [sym__expression] = STATE(855), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40229,27 +40806,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [859] = { - [sym__expression] = STATE(910), - [sym_comma_expression] = STATE(389), + [863] = { + [sym__expression] = STATE(914), + [sym_comma_expression] = STATE(393), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40266,136 +40844,40 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [860] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(909), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), - [sym_conditional_expression] = STATE(53), - [sym_assignment_expression] = STATE(53), - [sym_pointer_expression] = STATE(53), - [sym_logical_expression] = STATE(53), - [sym_bitwise_expression] = STATE(53), - [sym_equality_expression] = STATE(53), - [sym_relational_expression] = STATE(53), - [sym_shift_expression] = STATE(53), - [sym_math_expression] = STATE(53), - [sym_cast_expression] = STATE(53), - [sym_sizeof_expression] = STATE(53), - [sym_subscript_expression] = STATE(53), - [sym_call_expression] = STATE(53), - [sym_field_expression] = STATE(53), - [sym_compound_literal_expression] = STATE(53), - [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3711), - [anon_sym_RPAREN] = ACTIONS(3711), - [anon_sym_SEMI] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3722), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_LBRACK] = ACTIONS(3711), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_RBRACK] = ACTIONS(3711), - [anon_sym_EQ] = ACTIONS(3731), - [anon_sym_typedef] = ACTIONS(1431), - [anon_sym_auto] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_restrict] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(1431), - [sym_function_specifier] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_COLON] = ACTIONS(3711), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1945), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_do] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_goto] = ACTIONS(1969), - [anon_sym_QMARK] = ACTIONS(3711), - [anon_sym_STAR_EQ] = ACTIONS(3711), - [anon_sym_SLASH_EQ] = ACTIONS(3711), - [anon_sym_PERCENT_EQ] = ACTIONS(3711), - [anon_sym_PLUS_EQ] = ACTIONS(3711), - [anon_sym_DASH_EQ] = ACTIONS(3711), - [anon_sym_LT_LT_EQ] = ACTIONS(3711), - [anon_sym_GT_GT_EQ] = ACTIONS(3711), - [anon_sym_AMP_EQ] = ACTIONS(3711), - [anon_sym_CARET_EQ] = ACTIONS(3711), - [anon_sym_PIPE_EQ] = ACTIONS(3711), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_PIPE_PIPE] = ACTIONS(3711), - [anon_sym_AMP_AMP] = ACTIONS(3711), - [anon_sym_BANG] = ACTIONS(3734), - [anon_sym_PIPE] = ACTIONS(3731), - [anon_sym_CARET] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(3737), - [anon_sym_EQ_EQ] = ACTIONS(3711), - [anon_sym_BANG_EQ] = ACTIONS(3711), - [anon_sym_LT] = ACTIONS(3731), - [anon_sym_GT] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3711), - [anon_sym_GT_EQ] = ACTIONS(3711), - [anon_sym_LT_LT] = ACTIONS(3731), - [anon_sym_GT_GT] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3731), - [anon_sym_PERCENT] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3745), - [anon_sym_PLUS_PLUS] = ACTIONS(3745), - [anon_sym_sizeof] = ACTIONS(3750), - [anon_sym_DOT] = ACTIONS(3711), - [anon_sym_DASH_GT] = ACTIONS(3711), - [sym_number_literal] = ACTIONS(2011), - [sym_char_literal] = ACTIONS(2011), - [sym_string_literal] = ACTIONS(2011), - [sym_identifier] = ACTIONS(3753), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [861] = { - [sym__expression] = STATE(873), + [864] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(913), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40412,116 +40894,215 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_RPAREN] = ACTIONS(3760), - [anon_sym_SEMI] = ACTIONS(3762), - [anon_sym_extern] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3769), - [anon_sym_RBRACE] = ACTIONS(3772), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3759), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3767), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(3775), [anon_sym_STAR] = ACTIONS(3779), - [anon_sym_static] = ACTIONS(3766), - [anon_sym_typedef] = ACTIONS(3766), - [anon_sym_auto] = ACTIONS(3766), - [anon_sym_register] = ACTIONS(3766), - [anon_sym_const] = ACTIONS(3783), - [anon_sym_restrict] = ACTIONS(3783), - [anon_sym_volatile] = ACTIONS(3783), - [sym_function_specifier] = ACTIONS(3766), - [anon_sym_unsigned] = ACTIONS(3783), - [anon_sym_long] = ACTIONS(3783), - [anon_sym_short] = ACTIONS(3783), - [anon_sym_enum] = ACTIONS(3783), - [anon_sym_struct] = ACTIONS(3783), - [anon_sym_union] = ACTIONS(3783), - [anon_sym_if] = ACTIONS(3766), - [anon_sym_else] = ACTIONS(3766), - [anon_sym_switch] = ACTIONS(3766), - [anon_sym_case] = ACTIONS(3766), - [anon_sym_default] = ACTIONS(3766), - [anon_sym_while] = ACTIONS(3766), - [anon_sym_do] = ACTIONS(3766), - [anon_sym_for] = ACTIONS(3766), - [anon_sym_return] = ACTIONS(3766), - [anon_sym_break] = ACTIONS(3766), - [anon_sym_continue] = ACTIONS(3766), - [anon_sym_goto] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_RBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_auto] = ACTIONS(1449), + [anon_sym_register] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_restrict] = ACTIONS(1449), + [anon_sym_volatile] = ACTIONS(1449), + [sym_function_specifier] = ACTIONS(1449), + [anon_sym_unsigned] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_case] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(3764), + [anon_sym_STAR_EQ] = ACTIONS(3764), + [anon_sym_SLASH_EQ] = ACTIONS(3764), + [anon_sym_PERCENT_EQ] = ACTIONS(3764), + [anon_sym_PLUS_EQ] = ACTIONS(3764), + [anon_sym_DASH_EQ] = ACTIONS(3764), + [anon_sym_LT_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_GT_EQ] = ACTIONS(3764), + [anon_sym_AMP_EQ] = ACTIONS(3764), + [anon_sym_CARET_EQ] = ACTIONS(3764), + [anon_sym_PIPE_EQ] = ACTIONS(3764), [anon_sym_AMP] = ACTIONS(3779), - [anon_sym_BANG] = ACTIONS(3790), - [anon_sym_TILDE] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(3798), - [anon_sym_DASH] = ACTIONS(3798), - [anon_sym_DASH_DASH] = ACTIONS(3802), - [anon_sym_PLUS_PLUS] = ACTIONS(3802), - [anon_sym_sizeof] = ACTIONS(3806), - [sym_number_literal] = ACTIONS(3810), - [sym_char_literal] = ACTIONS(3810), - [sym_string_literal] = ACTIONS(3810), - [sym_identifier] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_BANG] = ACTIONS(3787), + [anon_sym_PIPE] = ACTIONS(3784), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_EQ_EQ] = ACTIONS(3764), + [anon_sym_BANG_EQ] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_GT] = ACTIONS(3784), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_LT_LT] = ACTIONS(3784), + [anon_sym_GT_GT] = ACTIONS(3784), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_SLASH] = ACTIONS(3784), + [anon_sym_PERCENT] = ACTIONS(3784), + [anon_sym_DASH_DASH] = ACTIONS(3798), + [anon_sym_PLUS_PLUS] = ACTIONS(3798), + [anon_sym_sizeof] = ACTIONS(3803), + [anon_sym_DOT] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_number_literal] = ACTIONS(2029), + [sym_char_literal] = ACTIONS(2029), + [sym_string_literal] = ACTIONS(2032), + [sym_identifier] = ACTIONS(3806), [sym_comment] = ACTIONS(121), }, - [862] = { - [anon_sym_LPAREN] = ACTIONS(3822), - [anon_sym_COMMA] = ACTIONS(3822), - [anon_sym_RPAREN] = ACTIONS(3822), - [anon_sym_SEMI] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_RBRACK] = ACTIONS(555), - [anon_sym_EQ] = ACTIONS(3850), - [anon_sym_COLON] = ACTIONS(3831), - [anon_sym_QMARK] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(557), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(557), - [anon_sym_DASH] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(2469), - [anon_sym_DASH_GT] = ACTIONS(555), + [865] = { + [sym__expression] = STATE(877), + [sym_conditional_expression] = STATE(53), + [sym_assignment_expression] = STATE(53), + [sym_pointer_expression] = STATE(53), + [sym_logical_expression] = STATE(53), + [sym_bitwise_expression] = STATE(53), + [sym_equality_expression] = STATE(53), + [sym_relational_expression] = STATE(53), + [sym_shift_expression] = STATE(53), + [sym_math_expression] = STATE(53), + [sym_cast_expression] = STATE(53), + [sym_sizeof_expression] = STATE(53), + [sym_subscript_expression] = STATE(53), + [sym_call_expression] = STATE(53), + [sym_field_expression] = STATE(53), + [sym_compound_literal_expression] = STATE(53), + [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_RPAREN] = ACTIONS(3813), + [anon_sym_SEMI] = ACTIONS(3815), + [anon_sym_extern] = ACTIONS(3819), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_RBRACE] = ACTIONS(3825), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_static] = ACTIONS(3819), + [anon_sym_typedef] = ACTIONS(3819), + [anon_sym_auto] = ACTIONS(3819), + [anon_sym_register] = ACTIONS(3819), + [anon_sym_const] = ACTIONS(3836), + [anon_sym_restrict] = ACTIONS(3836), + [anon_sym_volatile] = ACTIONS(3836), + [sym_function_specifier] = ACTIONS(3819), + [anon_sym_unsigned] = ACTIONS(3836), + [anon_sym_long] = ACTIONS(3836), + [anon_sym_short] = ACTIONS(3836), + [anon_sym_enum] = ACTIONS(3836), + [anon_sym_struct] = ACTIONS(3836), + [anon_sym_union] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3819), + [anon_sym_else] = ACTIONS(3819), + [anon_sym_switch] = ACTIONS(3819), + [anon_sym_case] = ACTIONS(3819), + [anon_sym_default] = ACTIONS(3819), + [anon_sym_while] = ACTIONS(3819), + [anon_sym_do] = ACTIONS(3819), + [anon_sym_for] = ACTIONS(3819), + [anon_sym_return] = ACTIONS(3819), + [anon_sym_break] = ACTIONS(3819), + [anon_sym_continue] = ACTIONS(3819), + [anon_sym_goto] = ACTIONS(3819), + [anon_sym_AMP] = ACTIONS(3832), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3851), + [anon_sym_DASH] = ACTIONS(3851), + [anon_sym_DASH_DASH] = ACTIONS(3855), + [anon_sym_PLUS_PLUS] = ACTIONS(3855), + [anon_sym_sizeof] = ACTIONS(3859), + [sym_number_literal] = ACTIONS(3863), + [sym_char_literal] = ACTIONS(3863), + [sym_string_literal] = ACTIONS(3867), + [sym_identifier] = ACTIONS(3871), [sym_comment] = ACTIONS(121), }, - [863] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(612), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(865), - [sym_comma_expression] = STATE(481), + [866] = { + [anon_sym_LPAREN] = ACTIONS(3879), + [anon_sym_COMMA] = ACTIONS(3879), + [anon_sym_RPAREN] = ACTIONS(3879), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACE] = ACTIONS(3893), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(2504), + [anon_sym_DASH_GT] = ACTIONS(559), + [sym_comment] = ACTIONS(121), + }, + [867] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(616), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(869), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40538,134 +41119,135 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(121), }, - [864] = { - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [868] = { + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, - [865] = { - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_COMMA] = ACTIONS(3862), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(3865), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3871), - [anon_sym_RBRACK] = ACTIONS(521), - [anon_sym_EQ] = ACTIONS(3874), - [anon_sym_COLON] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_STAR_EQ] = ACTIONS(3880), - [anon_sym_SLASH_EQ] = ACTIONS(3880), - [anon_sym_PERCENT_EQ] = ACTIONS(3880), - [anon_sym_PLUS_EQ] = ACTIONS(3880), - [anon_sym_DASH_EQ] = ACTIONS(3880), - [anon_sym_LT_LT_EQ] = ACTIONS(3880), - [anon_sym_GT_GT_EQ] = ACTIONS(3880), - [anon_sym_AMP_EQ] = ACTIONS(3880), - [anon_sym_CARET_EQ] = ACTIONS(3880), - [anon_sym_PIPE_EQ] = ACTIONS(3880), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_CARET] = ACTIONS(3883), - [anon_sym_EQ_EQ] = ACTIONS(3889), - [anon_sym_BANG_EQ] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_GT] = ACTIONS(3892), - [anon_sym_LT_EQ] = ACTIONS(3895), - [anon_sym_GT_EQ] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3898), - [anon_sym_GT_GT] = ACTIONS(3898), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_SLASH] = ACTIONS(3868), - [anon_sym_PERCENT] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3904), - [anon_sym_DASH_GT] = ACTIONS(3904), + [869] = { + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_COMMA] = ACTIONS(3919), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(3922), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_RBRACK] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3937), + [anon_sym_SLASH_EQ] = ACTIONS(3937), + [anon_sym_PERCENT_EQ] = ACTIONS(3937), + [anon_sym_PLUS_EQ] = ACTIONS(3937), + [anon_sym_DASH_EQ] = ACTIONS(3937), + [anon_sym_LT_LT_EQ] = ACTIONS(3937), + [anon_sym_GT_GT_EQ] = ACTIONS(3937), + [anon_sym_AMP_EQ] = ACTIONS(3937), + [anon_sym_CARET_EQ] = ACTIONS(3937), + [anon_sym_PIPE_EQ] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3946), + [anon_sym_BANG_EQ] = ACTIONS(3946), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_LT_LT] = ACTIONS(3955), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_DASH_DASH] = ACTIONS(3958), + [anon_sym_PLUS_PLUS] = ACTIONS(3958), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), [sym_comment] = ACTIONS(121), }, - [866] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [870] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40682,12 +41264,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(907), + [sym_type_name] = STATE(911), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -40697,37 +41280,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [867] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(906), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [871] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(910), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40744,37 +41327,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [868] = { - [sym__expression] = STATE(905), + [872] = { + [sym__expression] = STATE(909), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40791,24 +41375,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [869] = { - [sym__expression] = STATE(904), + [873] = { + [sym__expression] = STATE(908), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40825,24 +41410,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [870] = { - [sym__expression] = STATE(903), + [874] = { + [sym__expression] = STATE(907), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40859,24 +41445,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [871] = { - [sym__expression] = STATE(902), + [875] = { + [sym__expression] = STATE(906), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40893,24 +41480,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [872] = { - [sym__expression] = STATE(898), + [876] = { + [sym__expression] = STATE(902), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -40927,82 +41515,83 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [873] = { - [aux_sym_for_statement_repeat1] = STATE(883), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_STAR_EQ] = ACTIONS(3917), - [anon_sym_SLASH_EQ] = ACTIONS(3917), - [anon_sym_PERCENT_EQ] = ACTIONS(3917), - [anon_sym_PLUS_EQ] = ACTIONS(3917), - [anon_sym_DASH_EQ] = ACTIONS(3917), - [anon_sym_LT_LT_EQ] = ACTIONS(3917), - [anon_sym_GT_GT_EQ] = ACTIONS(3917), - [anon_sym_AMP_EQ] = ACTIONS(3917), - [anon_sym_CARET_EQ] = ACTIONS(3917), - [anon_sym_PIPE_EQ] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_CARET] = ACTIONS(3919), - [anon_sym_EQ_EQ] = ACTIONS(3923), - [anon_sym_BANG_EQ] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_LT_EQ] = ACTIONS(3927), - [anon_sym_GT_EQ] = ACTIONS(3927), - [anon_sym_LT_LT] = ACTIONS(3929), - [anon_sym_GT_GT] = ACTIONS(3929), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3911), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [877] = { + [aux_sym_for_statement_repeat1] = STATE(887), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(3966), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3974), + [anon_sym_SLASH_EQ] = ACTIONS(3974), + [anon_sym_PERCENT_EQ] = ACTIONS(3974), + [anon_sym_PLUS_EQ] = ACTIONS(3974), + [anon_sym_DASH_EQ] = ACTIONS(3974), + [anon_sym_LT_LT_EQ] = ACTIONS(3974), + [anon_sym_GT_GT_EQ] = ACTIONS(3974), + [anon_sym_AMP_EQ] = ACTIONS(3974), + [anon_sym_CARET_EQ] = ACTIONS(3974), + [anon_sym_PIPE_EQ] = ACTIONS(3974), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_CARET] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3982), + [anon_sym_GT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3984), + [anon_sym_GT_EQ] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3968), + [anon_sym_SLASH] = ACTIONS(3968), + [anon_sym_PERCENT] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [874] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(896), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [878] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(900), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41019,37 +41608,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [875] = { - [sym__expression] = STATE(886), + [879] = { + [sym__expression] = STATE(890), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41066,24 +41656,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [876] = { - [sym__expression] = STATE(892), + [880] = { + [sym__expression] = STATE(896), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41100,24 +41691,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [877] = { - [sym__expression] = STATE(893), + [881] = { + [sym__expression] = STATE(897), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41134,24 +41726,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [878] = { - [sym__expression] = STATE(890), + [882] = { + [sym__expression] = STATE(894), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41168,24 +41761,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [879] = { - [sym__expression] = STATE(891), + [883] = { + [sym__expression] = STATE(895), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41202,24 +41796,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [880] = { - [sym__expression] = STATE(889), + [884] = { + [sym__expression] = STATE(893), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41236,24 +41831,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [881] = { - [sym__expression] = STATE(888), + [885] = { + [sym__expression] = STATE(892), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41270,24 +41866,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [882] = { - [sym__expression] = STATE(887), + [886] = { + [sym__expression] = STATE(891), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41304,44 +41901,45 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [883] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(3931), + [887] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(3988), [sym_comment] = ACTIONS(121), }, - [884] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(885), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [888] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(889), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41358,418 +41956,419 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), - [sym_comment] = ACTIONS(121), - }, - [885] = { - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym_extern] = ACTIONS(3936), - [anon_sym_LBRACE] = ACTIONS(3933), - [anon_sym_RBRACE] = ACTIONS(3933), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_static] = ACTIONS(3936), - [anon_sym_typedef] = ACTIONS(3936), - [anon_sym_auto] = ACTIONS(3936), - [anon_sym_register] = ACTIONS(3936), - [anon_sym_const] = ACTIONS(3936), - [anon_sym_restrict] = ACTIONS(3936), - [anon_sym_volatile] = ACTIONS(3936), - [sym_function_specifier] = ACTIONS(3936), - [anon_sym_unsigned] = ACTIONS(3936), - [anon_sym_long] = ACTIONS(3936), - [anon_sym_short] = ACTIONS(3936), - [anon_sym_enum] = ACTIONS(3936), - [anon_sym_struct] = ACTIONS(3936), - [anon_sym_union] = ACTIONS(3936), - [anon_sym_if] = ACTIONS(3936), - [anon_sym_else] = ACTIONS(3936), - [anon_sym_switch] = ACTIONS(3936), - [anon_sym_case] = ACTIONS(3936), - [anon_sym_default] = ACTIONS(3936), - [anon_sym_while] = ACTIONS(3936), - [anon_sym_do] = ACTIONS(3936), - [anon_sym_for] = ACTIONS(3936), - [anon_sym_return] = ACTIONS(3936), - [anon_sym_break] = ACTIONS(3936), - [anon_sym_continue] = ACTIONS(3936), - [anon_sym_goto] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3933), - [anon_sym_BANG] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_sizeof] = ACTIONS(3936), - [sym_number_literal] = ACTIONS(3936), - [sym_char_literal] = ACTIONS(3936), - [sym_string_literal] = ACTIONS(3936), - [sym_identifier] = ACTIONS(3939), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [886] = { - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(461), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_EQ] = ACTIONS(3945), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3951), - [anon_sym_SLASH_EQ] = ACTIONS(3951), - [anon_sym_PERCENT_EQ] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3951), - [anon_sym_DASH_EQ] = ACTIONS(3951), - [anon_sym_LT_LT_EQ] = ACTIONS(3951), - [anon_sym_GT_GT_EQ] = ACTIONS(3951), - [anon_sym_AMP_EQ] = ACTIONS(3951), - [anon_sym_CARET_EQ] = ACTIONS(3951), - [anon_sym_PIPE_EQ] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3954), - [anon_sym_CARET] = ACTIONS(3954), - [anon_sym_EQ_EQ] = ACTIONS(3960), - [anon_sym_BANG_EQ] = ACTIONS(3960), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_LT_EQ] = ACTIONS(3966), - [anon_sym_GT_EQ] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3942), - [anon_sym_DASH] = ACTIONS(3942), - [anon_sym_SLASH] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3528), - [anon_sym_DOT] = ACTIONS(3531), - [anon_sym_DASH_GT] = ACTIONS(3531), + [889] = { + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_extern] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_static] = ACTIONS(3993), + [anon_sym_typedef] = ACTIONS(3993), + [anon_sym_auto] = ACTIONS(3993), + [anon_sym_register] = ACTIONS(3993), + [anon_sym_const] = ACTIONS(3993), + [anon_sym_restrict] = ACTIONS(3993), + [anon_sym_volatile] = ACTIONS(3993), + [sym_function_specifier] = ACTIONS(3993), + [anon_sym_unsigned] = ACTIONS(3993), + [anon_sym_long] = ACTIONS(3993), + [anon_sym_short] = ACTIONS(3993), + [anon_sym_enum] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3993), + [anon_sym_union] = ACTIONS(3993), + [anon_sym_if] = ACTIONS(3993), + [anon_sym_else] = ACTIONS(3993), + [anon_sym_switch] = ACTIONS(3993), + [anon_sym_case] = ACTIONS(3993), + [anon_sym_default] = ACTIONS(3993), + [anon_sym_while] = ACTIONS(3993), + [anon_sym_do] = ACTIONS(3993), + [anon_sym_for] = ACTIONS(3993), + [anon_sym_return] = ACTIONS(3993), + [anon_sym_break] = ACTIONS(3993), + [anon_sym_continue] = ACTIONS(3993), + [anon_sym_goto] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_BANG] = ACTIONS(3990), + [anon_sym_TILDE] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_sizeof] = ACTIONS(3993), + [sym_number_literal] = ACTIONS(3993), + [sym_char_literal] = ACTIONS(3993), + [sym_string_literal] = ACTIONS(3993), + [sym_identifier] = ACTIONS(3996), [sym_comment] = ACTIONS(121), }, - [887] = { - [anon_sym_LPAREN] = ACTIONS(3972), + [890] = { + [anon_sym_LPAREN] = ACTIONS(3545), [anon_sym_COMMA] = ACTIONS(465), [anon_sym_RPAREN] = ACTIONS(465), [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_EQ] = ACTIONS(3981), - [anon_sym_QMARK] = ACTIONS(3984), - [anon_sym_STAR_EQ] = ACTIONS(3987), - [anon_sym_SLASH_EQ] = ACTIONS(3987), - [anon_sym_PERCENT_EQ] = ACTIONS(3987), - [anon_sym_PLUS_EQ] = ACTIONS(3987), - [anon_sym_DASH_EQ] = ACTIONS(3987), - [anon_sym_LT_LT_EQ] = ACTIONS(3987), - [anon_sym_GT_GT_EQ] = ACTIONS(3987), - [anon_sym_AMP_EQ] = ACTIONS(3987), - [anon_sym_CARET_EQ] = ACTIONS(3987), - [anon_sym_PIPE_EQ] = ACTIONS(3987), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE] = ACTIONS(3990), - [anon_sym_CARET] = ACTIONS(3990), - [anon_sym_EQ_EQ] = ACTIONS(3996), - [anon_sym_BANG_EQ] = ACTIONS(3996), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_LT_LT] = ACTIONS(4005), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3975), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(4011), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4005), + [anon_sym_STAR_EQ] = ACTIONS(4008), + [anon_sym_SLASH_EQ] = ACTIONS(4008), + [anon_sym_PERCENT_EQ] = ACTIONS(4008), + [anon_sym_PLUS_EQ] = ACTIONS(4008), + [anon_sym_DASH_EQ] = ACTIONS(4008), + [anon_sym_LT_LT_EQ] = ACTIONS(4008), + [anon_sym_GT_GT_EQ] = ACTIONS(4008), + [anon_sym_AMP_EQ] = ACTIONS(4008), + [anon_sym_CARET_EQ] = ACTIONS(4008), + [anon_sym_PIPE_EQ] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4011), + [anon_sym_PIPE_PIPE] = ACTIONS(4014), + [anon_sym_AMP_AMP] = ACTIONS(4014), + [anon_sym_PIPE] = ACTIONS(4011), + [anon_sym_CARET] = ACTIONS(4011), + [anon_sym_EQ_EQ] = ACTIONS(4017), + [anon_sym_BANG_EQ] = ACTIONS(4017), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4023), + [anon_sym_GT_EQ] = ACTIONS(4023), + [anon_sym_LT_LT] = ACTIONS(4026), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3999), + [anon_sym_DASH_DASH] = ACTIONS(3581), + [anon_sym_PLUS_PLUS] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3584), + [anon_sym_DASH_GT] = ACTIONS(3584), [sym_comment] = ACTIONS(121), }, - [888] = { - [anon_sym_LPAREN] = ACTIONS(4014), + [891] = { + [anon_sym_LPAREN] = ACTIONS(4029), [anon_sym_COMMA] = ACTIONS(469), [anon_sym_RPAREN] = ACTIONS(469), [anon_sym_SEMI] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_EQ] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4029), - [anon_sym_SLASH_EQ] = ACTIONS(4029), - [anon_sym_PERCENT_EQ] = ACTIONS(4029), - [anon_sym_PLUS_EQ] = ACTIONS(4029), - [anon_sym_DASH_EQ] = ACTIONS(4029), - [anon_sym_LT_LT_EQ] = ACTIONS(4029), - [anon_sym_GT_GT_EQ] = ACTIONS(4029), - [anon_sym_AMP_EQ] = ACTIONS(4029), - [anon_sym_CARET_EQ] = ACTIONS(4029), - [anon_sym_PIPE_EQ] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4035), - [anon_sym_AMP_AMP] = ACTIONS(4035), - [anon_sym_PIPE] = ACTIONS(4032), - [anon_sym_CARET] = ACTIONS(4032), - [anon_sym_EQ_EQ] = ACTIONS(4038), - [anon_sym_BANG_EQ] = ACTIONS(4038), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_LT_EQ] = ACTIONS(4044), - [anon_sym_GT_EQ] = ACTIONS(4044), - [anon_sym_LT_LT] = ACTIONS(4047), - [anon_sym_GT_GT] = ACTIONS(4047), - [anon_sym_PLUS] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_SLASH] = ACTIONS(4017), - [anon_sym_PERCENT] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_DOT] = ACTIONS(4053), - [anon_sym_DASH_GT] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4038), + [anon_sym_QMARK] = ACTIONS(4041), + [anon_sym_STAR_EQ] = ACTIONS(4044), + [anon_sym_SLASH_EQ] = ACTIONS(4044), + [anon_sym_PERCENT_EQ] = ACTIONS(4044), + [anon_sym_PLUS_EQ] = ACTIONS(4044), + [anon_sym_DASH_EQ] = ACTIONS(4044), + [anon_sym_LT_LT_EQ] = ACTIONS(4044), + [anon_sym_GT_GT_EQ] = ACTIONS(4044), + [anon_sym_AMP_EQ] = ACTIONS(4044), + [anon_sym_CARET_EQ] = ACTIONS(4044), + [anon_sym_PIPE_EQ] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4047), + [anon_sym_PIPE_PIPE] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4047), + [anon_sym_CARET] = ACTIONS(4047), + [anon_sym_EQ_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4053), + [anon_sym_LT] = ACTIONS(4056), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_LT_EQ] = ACTIONS(4059), + [anon_sym_GT_EQ] = ACTIONS(4059), + [anon_sym_LT_LT] = ACTIONS(4062), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4032), + [anon_sym_PERCENT] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4065), + [anon_sym_PLUS_PLUS] = ACTIONS(4065), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_DASH_GT] = ACTIONS(4068), [sym_comment] = ACTIONS(121), }, - [889] = { - [anon_sym_LPAREN] = ACTIONS(4056), + [892] = { + [anon_sym_LPAREN] = ACTIONS(4071), [anon_sym_COMMA] = ACTIONS(473), [anon_sym_RPAREN] = ACTIONS(473), [anon_sym_SEMI] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(4059), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_EQ] = ACTIONS(4065), - [anon_sym_QMARK] = ACTIONS(4068), - [anon_sym_STAR_EQ] = ACTIONS(4071), - [anon_sym_SLASH_EQ] = ACTIONS(4071), - [anon_sym_PERCENT_EQ] = ACTIONS(4071), - [anon_sym_PLUS_EQ] = ACTIONS(4071), - [anon_sym_DASH_EQ] = ACTIONS(4071), - [anon_sym_LT_LT_EQ] = ACTIONS(4071), - [anon_sym_GT_GT_EQ] = ACTIONS(4071), - [anon_sym_AMP_EQ] = ACTIONS(4071), - [anon_sym_CARET_EQ] = ACTIONS(4071), - [anon_sym_PIPE_EQ] = ACTIONS(4071), - [anon_sym_AMP] = ACTIONS(4074), - [anon_sym_PIPE_PIPE] = ACTIONS(4077), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_PIPE] = ACTIONS(4074), - [anon_sym_CARET] = ACTIONS(4074), - [anon_sym_EQ_EQ] = ACTIONS(4080), - [anon_sym_BANG_EQ] = ACTIONS(4080), - [anon_sym_LT] = ACTIONS(4083), - [anon_sym_GT] = ACTIONS(4083), - [anon_sym_LT_EQ] = ACTIONS(4086), - [anon_sym_GT_EQ] = ACTIONS(4086), - [anon_sym_LT_LT] = ACTIONS(4089), - [anon_sym_GT_GT] = ACTIONS(4089), - [anon_sym_PLUS] = ACTIONS(4059), - [anon_sym_DASH] = ACTIONS(4059), - [anon_sym_SLASH] = ACTIONS(4059), - [anon_sym_PERCENT] = ACTIONS(4059), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4095), - [anon_sym_DASH_GT] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4080), + [anon_sym_QMARK] = ACTIONS(4083), + [anon_sym_STAR_EQ] = ACTIONS(4086), + [anon_sym_SLASH_EQ] = ACTIONS(4086), + [anon_sym_PERCENT_EQ] = ACTIONS(4086), + [anon_sym_PLUS_EQ] = ACTIONS(4086), + [anon_sym_DASH_EQ] = ACTIONS(4086), + [anon_sym_LT_LT_EQ] = ACTIONS(4086), + [anon_sym_GT_GT_EQ] = ACTIONS(4086), + [anon_sym_AMP_EQ] = ACTIONS(4086), + [anon_sym_CARET_EQ] = ACTIONS(4086), + [anon_sym_PIPE_EQ] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_PIPE] = ACTIONS(4089), + [anon_sym_CARET] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4095), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_LT_EQ] = ACTIONS(4101), + [anon_sym_GT_EQ] = ACTIONS(4101), + [anon_sym_LT_LT] = ACTIONS(4104), + [anon_sym_GT_GT] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4074), + [anon_sym_DASH_DASH] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(4107), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4110), [sym_comment] = ACTIONS(121), }, - [890] = { - [anon_sym_LPAREN] = ACTIONS(3534), + [893] = { + [anon_sym_LPAREN] = ACTIONS(4113), [anon_sym_COMMA] = ACTIONS(477), [anon_sym_RPAREN] = ACTIONS(477), [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_QMARK] = ACTIONS(4104), - [anon_sym_STAR_EQ] = ACTIONS(4107), - [anon_sym_SLASH_EQ] = ACTIONS(4107), - [anon_sym_PERCENT_EQ] = ACTIONS(4107), - [anon_sym_PLUS_EQ] = ACTIONS(4107), - [anon_sym_DASH_EQ] = ACTIONS(4107), - [anon_sym_LT_LT_EQ] = ACTIONS(4107), - [anon_sym_GT_GT_EQ] = ACTIONS(4107), - [anon_sym_AMP_EQ] = ACTIONS(4107), - [anon_sym_CARET_EQ] = ACTIONS(4107), - [anon_sym_PIPE_EQ] = ACTIONS(4107), - [anon_sym_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4113), - [anon_sym_AMP_AMP] = ACTIONS(4113), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_LT] = ACTIONS(4119), - [anon_sym_GT] = ACTIONS(4119), - [anon_sym_LT_EQ] = ACTIONS(4122), - [anon_sym_GT_EQ] = ACTIONS(4122), - [anon_sym_LT_LT] = ACTIONS(4125), - [anon_sym_GT_GT] = ACTIONS(4125), - [anon_sym_PLUS] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4098), - [anon_sym_SLASH] = ACTIONS(4098), - [anon_sym_PERCENT] = ACTIONS(4098), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_DASH_GT] = ACTIONS(3573), + [anon_sym_STAR] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_STAR_EQ] = ACTIONS(4128), + [anon_sym_SLASH_EQ] = ACTIONS(4128), + [anon_sym_PERCENT_EQ] = ACTIONS(4128), + [anon_sym_PLUS_EQ] = ACTIONS(4128), + [anon_sym_DASH_EQ] = ACTIONS(4128), + [anon_sym_LT_LT_EQ] = ACTIONS(4128), + [anon_sym_GT_GT_EQ] = ACTIONS(4128), + [anon_sym_AMP_EQ] = ACTIONS(4128), + [anon_sym_CARET_EQ] = ACTIONS(4128), + [anon_sym_PIPE_EQ] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_PIPE] = ACTIONS(4131), + [anon_sym_CARET] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_LT_EQ] = ACTIONS(4143), + [anon_sym_GT_EQ] = ACTIONS(4143), + [anon_sym_LT_LT] = ACTIONS(4146), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4116), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_SLASH] = ACTIONS(4116), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), [sym_comment] = ACTIONS(121), }, - [891] = { - [anon_sym_LPAREN] = ACTIONS(4128), + [894] = { + [anon_sym_LPAREN] = ACTIONS(3587), [anon_sym_COMMA] = ACTIONS(481), [anon_sym_RPAREN] = ACTIONS(481), [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(4137), - [anon_sym_QMARK] = ACTIONS(4140), - [anon_sym_STAR_EQ] = ACTIONS(4143), - [anon_sym_SLASH_EQ] = ACTIONS(4143), - [anon_sym_PERCENT_EQ] = ACTIONS(4143), - [anon_sym_PLUS_EQ] = ACTIONS(4143), - [anon_sym_DASH_EQ] = ACTIONS(4143), - [anon_sym_LT_LT_EQ] = ACTIONS(4143), - [anon_sym_GT_GT_EQ] = ACTIONS(4143), - [anon_sym_AMP_EQ] = ACTIONS(4143), - [anon_sym_CARET_EQ] = ACTIONS(4143), - [anon_sym_PIPE_EQ] = ACTIONS(4143), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_PIPE_PIPE] = ACTIONS(4149), - [anon_sym_AMP_AMP] = ACTIONS(4149), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_CARET] = ACTIONS(4146), - [anon_sym_EQ_EQ] = ACTIONS(4152), - [anon_sym_BANG_EQ] = ACTIONS(4152), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_GT] = ACTIONS(4155), - [anon_sym_LT_EQ] = ACTIONS(4158), - [anon_sym_GT_EQ] = ACTIONS(4158), - [anon_sym_LT_LT] = ACTIONS(4161), - [anon_sym_GT_GT] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4131), - [anon_sym_DASH] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4131), - [anon_sym_PERCENT] = ACTIONS(4131), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4167), - [anon_sym_DASH_GT] = ACTIONS(4167), + [anon_sym_STAR] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_EQ] = ACTIONS(4158), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_PIPE] = ACTIONS(4167), + [anon_sym_CARET] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_LT_LT] = ACTIONS(4182), + [anon_sym_GT_GT] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4155), + [anon_sym_DASH] = ACTIONS(4155), + [anon_sym_SLASH] = ACTIONS(4155), + [anon_sym_PERCENT] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_DOT] = ACTIONS(3626), + [anon_sym_DASH_GT] = ACTIONS(3626), [sym_comment] = ACTIONS(121), }, - [892] = { - [anon_sym_LPAREN] = ACTIONS(3576), + [895] = { + [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(485), [anon_sym_RPAREN] = ACTIONS(485), [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(4173), - [anon_sym_QMARK] = ACTIONS(4176), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_LT_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_AMP_EQ] = ACTIONS(4179), - [anon_sym_CARET_EQ] = ACTIONS(4179), - [anon_sym_PIPE_EQ] = ACTIONS(4179), - [anon_sym_AMP] = ACTIONS(4182), - [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_AMP_AMP] = ACTIONS(4185), - [anon_sym_PIPE] = ACTIONS(4182), - [anon_sym_CARET] = ACTIONS(4182), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4191), - [anon_sym_GT] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4194), - [anon_sym_GT_EQ] = ACTIONS(4194), - [anon_sym_LT_LT] = ACTIONS(4197), - [anon_sym_GT_GT] = ACTIONS(4197), - [anon_sym_PLUS] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4170), - [anon_sym_SLASH] = ACTIONS(4170), - [anon_sym_PERCENT] = ACTIONS(4170), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3615), - [anon_sym_DASH_GT] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym_EQ] = ACTIONS(4194), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_STAR_EQ] = ACTIONS(4200), + [anon_sym_SLASH_EQ] = ACTIONS(4200), + [anon_sym_PERCENT_EQ] = ACTIONS(4200), + [anon_sym_PLUS_EQ] = ACTIONS(4200), + [anon_sym_DASH_EQ] = ACTIONS(4200), + [anon_sym_LT_LT_EQ] = ACTIONS(4200), + [anon_sym_GT_GT_EQ] = ACTIONS(4200), + [anon_sym_AMP_EQ] = ACTIONS(4200), + [anon_sym_CARET_EQ] = ACTIONS(4200), + [anon_sym_PIPE_EQ] = ACTIONS(4200), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_EQ_EQ] = ACTIONS(4209), + [anon_sym_BANG_EQ] = ACTIONS(4209), + [anon_sym_LT] = ACTIONS(4212), + [anon_sym_GT] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4215), + [anon_sym_GT_EQ] = ACTIONS(4215), + [anon_sym_LT_LT] = ACTIONS(4218), + [anon_sym_GT_GT] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4224), [sym_comment] = ACTIONS(121), }, - [893] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(4200), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [896] = { + [anon_sym_LPAREN] = ACTIONS(3629), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_QMARK] = ACTIONS(4233), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_LT_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_GT_EQ] = ACTIONS(4236), + [anon_sym_AMP_EQ] = ACTIONS(4236), + [anon_sym_CARET_EQ] = ACTIONS(4236), + [anon_sym_PIPE_EQ] = ACTIONS(4236), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_CARET] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4245), + [anon_sym_BANG_EQ] = ACTIONS(4245), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_LT_EQ] = ACTIONS(4251), + [anon_sym_GT_EQ] = ACTIONS(4251), + [anon_sym_LT_LT] = ACTIONS(4254), + [anon_sym_GT_GT] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), [sym_comment] = ACTIONS(121), }, - [894] = { - [sym__expression] = STATE(895), + [897] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [898] = { + [sym__expression] = STATE(899), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41786,120 +42385,121 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [895] = { - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(3871), - [anon_sym_EQ] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4211), - [anon_sym_SLASH_EQ] = ACTIONS(4211), - [anon_sym_PERCENT_EQ] = ACTIONS(4211), - [anon_sym_PLUS_EQ] = ACTIONS(4211), - [anon_sym_DASH_EQ] = ACTIONS(4211), - [anon_sym_LT_LT_EQ] = ACTIONS(4211), - [anon_sym_GT_GT_EQ] = ACTIONS(4211), - [anon_sym_AMP_EQ] = ACTIONS(4211), - [anon_sym_CARET_EQ] = ACTIONS(4211), - [anon_sym_PIPE_EQ] = ACTIONS(4211), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE] = ACTIONS(4214), - [anon_sym_CARET] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4223), - [anon_sym_GT] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_LT_LT] = ACTIONS(4229), - [anon_sym_GT_GT] = ACTIONS(4229), - [anon_sym_PLUS] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4202), - [anon_sym_SLASH] = ACTIONS(4202), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3904), - [anon_sym_DASH_GT] = ACTIONS(3904), + [899] = { + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_QMARK] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4268), + [anon_sym_SLASH_EQ] = ACTIONS(4268), + [anon_sym_PERCENT_EQ] = ACTIONS(4268), + [anon_sym_PLUS_EQ] = ACTIONS(4268), + [anon_sym_DASH_EQ] = ACTIONS(4268), + [anon_sym_LT_LT_EQ] = ACTIONS(4268), + [anon_sym_GT_GT_EQ] = ACTIONS(4268), + [anon_sym_AMP_EQ] = ACTIONS(4268), + [anon_sym_CARET_EQ] = ACTIONS(4268), + [anon_sym_PIPE_EQ] = ACTIONS(4268), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_CARET] = ACTIONS(4271), + [anon_sym_EQ_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_LT_LT] = ACTIONS(4286), + [anon_sym_GT_GT] = ACTIONS(4286), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(3958), + [anon_sym_PLUS_PLUS] = ACTIONS(3958), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), [sym_comment] = ACTIONS(121), }, - [896] = { - [anon_sym_LPAREN] = ACTIONS(4232), - [anon_sym_SEMI] = ACTIONS(4232), - [anon_sym_extern] = ACTIONS(4235), - [anon_sym_LBRACE] = ACTIONS(4232), - [anon_sym_RBRACE] = ACTIONS(4232), - [anon_sym_STAR] = ACTIONS(4232), - [anon_sym_static] = ACTIONS(4235), - [anon_sym_typedef] = ACTIONS(4235), - [anon_sym_auto] = ACTIONS(4235), - [anon_sym_register] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4235), - [anon_sym_restrict] = ACTIONS(4235), - [anon_sym_volatile] = ACTIONS(4235), - [sym_function_specifier] = ACTIONS(4235), - [anon_sym_unsigned] = ACTIONS(4235), - [anon_sym_long] = ACTIONS(4235), - [anon_sym_short] = ACTIONS(4235), - [anon_sym_enum] = ACTIONS(4235), - [anon_sym_struct] = ACTIONS(4235), - [anon_sym_union] = ACTIONS(4235), - [anon_sym_if] = ACTIONS(4235), - [anon_sym_else] = ACTIONS(4235), - [anon_sym_switch] = ACTIONS(4235), - [anon_sym_case] = ACTIONS(4235), - [anon_sym_default] = ACTIONS(4235), - [anon_sym_while] = ACTIONS(4235), - [anon_sym_do] = ACTIONS(4235), - [anon_sym_for] = ACTIONS(4235), - [anon_sym_return] = ACTIONS(4235), - [anon_sym_break] = ACTIONS(4235), - [anon_sym_continue] = ACTIONS(4235), - [anon_sym_goto] = ACTIONS(4235), - [anon_sym_AMP] = ACTIONS(4232), - [anon_sym_BANG] = ACTIONS(4232), - [anon_sym_TILDE] = ACTIONS(4232), - [anon_sym_PLUS] = ACTIONS(4235), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4235), - [sym_number_literal] = ACTIONS(4235), - [sym_char_literal] = ACTIONS(4235), - [sym_string_literal] = ACTIONS(4235), - [sym_identifier] = ACTIONS(4238), + [900] = { + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4292), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4292), + [anon_sym_typedef] = ACTIONS(4292), + [anon_sym_auto] = ACTIONS(4292), + [anon_sym_register] = ACTIONS(4292), + [anon_sym_const] = ACTIONS(4292), + [anon_sym_restrict] = ACTIONS(4292), + [anon_sym_volatile] = ACTIONS(4292), + [sym_function_specifier] = ACTIONS(4292), + [anon_sym_unsigned] = ACTIONS(4292), + [anon_sym_long] = ACTIONS(4292), + [anon_sym_short] = ACTIONS(4292), + [anon_sym_enum] = ACTIONS(4292), + [anon_sym_struct] = ACTIONS(4292), + [anon_sym_union] = ACTIONS(4292), + [anon_sym_if] = ACTIONS(4292), + [anon_sym_else] = ACTIONS(4292), + [anon_sym_switch] = ACTIONS(4292), + [anon_sym_case] = ACTIONS(4292), + [anon_sym_default] = ACTIONS(4292), + [anon_sym_while] = ACTIONS(4292), + [anon_sym_do] = ACTIONS(4292), + [anon_sym_for] = ACTIONS(4292), + [anon_sym_return] = ACTIONS(4292), + [anon_sym_break] = ACTIONS(4292), + [anon_sym_continue] = ACTIONS(4292), + [anon_sym_goto] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_TILDE] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4289), + [anon_sym_PLUS_PLUS] = ACTIONS(4289), + [anon_sym_sizeof] = ACTIONS(4292), + [sym_number_literal] = ACTIONS(4292), + [sym_char_literal] = ACTIONS(4292), + [sym_string_literal] = ACTIONS(4292), + [sym_identifier] = ACTIONS(4295), [sym_comment] = ACTIONS(121), }, - [897] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [901] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -41916,12 +42516,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(899), + [sym_type_name] = STATE(903), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -41931,68 +42532,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [898] = { - [anon_sym_LPAREN] = ACTIONS(4241), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_EQ] = ACTIONS(4250), - [anon_sym_QMARK] = ACTIONS(4253), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_LT_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_GT_EQ] = ACTIONS(4256), - [anon_sym_AMP_EQ] = ACTIONS(4256), - [anon_sym_CARET_EQ] = ACTIONS(4256), - [anon_sym_PIPE_EQ] = ACTIONS(4256), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4265), - [anon_sym_BANG_EQ] = ACTIONS(4265), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4271), - [anon_sym_GT_EQ] = ACTIONS(4271), - [anon_sym_LT_LT] = ACTIONS(4274), - [anon_sym_GT_GT] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4280), - [anon_sym_DASH_GT] = ACTIONS(4280), + [902] = { + [anon_sym_LPAREN] = ACTIONS(4298), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_QMARK] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_LT_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_GT_EQ] = ACTIONS(4313), + [anon_sym_AMP_EQ] = ACTIONS(4313), + [anon_sym_CARET_EQ] = ACTIONS(4313), + [anon_sym_PIPE_EQ] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4316), + [anon_sym_PIPE_PIPE] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_PIPE] = ACTIONS(4316), + [anon_sym_CARET] = ACTIONS(4316), + [anon_sym_EQ_EQ] = ACTIONS(4322), + [anon_sym_BANG_EQ] = ACTIONS(4322), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_LT_LT] = ACTIONS(4331), + [anon_sym_GT_GT] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_SLASH] = ACTIONS(4301), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DOT] = ACTIONS(4337), + [anon_sym_DASH_GT] = ACTIONS(4337), [sym_comment] = ACTIONS(121), }, - [899] = { - [anon_sym_RPAREN] = ACTIONS(4283), + [903] = { + [anon_sym_RPAREN] = ACTIONS(4340), [sym_comment] = ACTIONS(121), }, - [900] = { - [sym__expression] = STATE(901), + [904] = { + [sym__expression] = STATE(905), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -42009,319 +42610,320 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(4285), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_sizeof] = ACTIONS(1803), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_sizeof] = ACTIONS(1821), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [901] = { - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_EQ] = ACTIONS(4302), - [anon_sym_QMARK] = ACTIONS(4305), - [anon_sym_STAR_EQ] = ACTIONS(4308), - [anon_sym_SLASH_EQ] = ACTIONS(4308), - [anon_sym_PERCENT_EQ] = ACTIONS(4308), - [anon_sym_PLUS_EQ] = ACTIONS(4308), - [anon_sym_DASH_EQ] = ACTIONS(4308), - [anon_sym_LT_LT_EQ] = ACTIONS(4308), - [anon_sym_GT_GT_EQ] = ACTIONS(4308), - [anon_sym_AMP_EQ] = ACTIONS(4308), - [anon_sym_CARET_EQ] = ACTIONS(4308), - [anon_sym_PIPE_EQ] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4311), - [anon_sym_PIPE_PIPE] = ACTIONS(4314), - [anon_sym_AMP_AMP] = ACTIONS(4314), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym_EQ_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ] = ACTIONS(4317), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_LT_LT] = ACTIONS(4326), - [anon_sym_GT_GT] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DASH_GT] = ACTIONS(3489), + [905] = { + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(4356), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_LT_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_GT_EQ] = ACTIONS(4365), + [anon_sym_AMP_EQ] = ACTIONS(4365), + [anon_sym_CARET_EQ] = ACTIONS(4365), + [anon_sym_PIPE_EQ] = ACTIONS(4365), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4371), + [anon_sym_AMP_AMP] = ACTIONS(4371), + [anon_sym_PIPE] = ACTIONS(4368), + [anon_sym_CARET] = ACTIONS(4368), + [anon_sym_EQ_EQ] = ACTIONS(4374), + [anon_sym_BANG_EQ] = ACTIONS(4374), + [anon_sym_LT] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4380), + [anon_sym_GT_EQ] = ACTIONS(4380), + [anon_sym_LT_LT] = ACTIONS(4383), + [anon_sym_GT_GT] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4356), + [anon_sym_DASH] = ACTIONS(4356), + [anon_sym_SLASH] = ACTIONS(4356), + [anon_sym_PERCENT] = ACTIONS(4356), + [anon_sym_DASH_DASH] = ACTIONS(3539), + [anon_sym_PLUS_PLUS] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_DASH_GT] = ACTIONS(3542), [sym_comment] = ACTIONS(121), }, - [902] = { - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(4332), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_STAR_EQ] = ACTIONS(4338), - [anon_sym_SLASH_EQ] = ACTIONS(4338), - [anon_sym_PERCENT_EQ] = ACTIONS(4338), - [anon_sym_PLUS_EQ] = ACTIONS(4338), - [anon_sym_DASH_EQ] = ACTIONS(4338), - [anon_sym_LT_LT_EQ] = ACTIONS(4338), - [anon_sym_GT_GT_EQ] = ACTIONS(4338), - [anon_sym_AMP_EQ] = ACTIONS(4338), - [anon_sym_CARET_EQ] = ACTIONS(4338), - [anon_sym_PIPE_EQ] = ACTIONS(4338), - [anon_sym_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4344), - [anon_sym_AMP_AMP] = ACTIONS(4344), - [anon_sym_PIPE] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4347), - [anon_sym_BANG_EQ] = ACTIONS(4347), - [anon_sym_LT] = ACTIONS(4350), - [anon_sym_GT] = ACTIONS(4350), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4356), - [anon_sym_GT_GT] = ACTIONS(4356), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_DASH_GT] = ACTIONS(3657), + [906] = { + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_EQ] = ACTIONS(4389), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_LT_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_GT_EQ] = ACTIONS(4395), + [anon_sym_AMP_EQ] = ACTIONS(4395), + [anon_sym_CARET_EQ] = ACTIONS(4395), + [anon_sym_PIPE_EQ] = ACTIONS(4395), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4401), + [anon_sym_AMP_AMP] = ACTIONS(4401), + [anon_sym_PIPE] = ACTIONS(4398), + [anon_sym_CARET] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4410), + [anon_sym_LT_LT] = ACTIONS(4413), + [anon_sym_GT_GT] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_DASH_GT] = ACTIONS(3710), [sym_comment] = ACTIONS(121), }, - [903] = { - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(4362), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_EQ] = ACTIONS(4368), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_STAR_EQ] = ACTIONS(4374), - [anon_sym_SLASH_EQ] = ACTIONS(4374), - [anon_sym_PERCENT_EQ] = ACTIONS(4374), - [anon_sym_PLUS_EQ] = ACTIONS(4374), - [anon_sym_DASH_EQ] = ACTIONS(4374), - [anon_sym_LT_LT_EQ] = ACTIONS(4374), - [anon_sym_GT_GT_EQ] = ACTIONS(4374), - [anon_sym_AMP_EQ] = ACTIONS(4374), - [anon_sym_CARET_EQ] = ACTIONS(4374), - [anon_sym_PIPE_EQ] = ACTIONS(4374), - [anon_sym_AMP] = ACTIONS(4377), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_AMP_AMP] = ACTIONS(4380), - [anon_sym_PIPE] = ACTIONS(4377), - [anon_sym_CARET] = ACTIONS(4377), - [anon_sym_EQ_EQ] = ACTIONS(4383), - [anon_sym_BANG_EQ] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4386), - [anon_sym_GT] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4389), - [anon_sym_GT_EQ] = ACTIONS(4389), - [anon_sym_LT_LT] = ACTIONS(4392), - [anon_sym_GT_GT] = ACTIONS(4392), - [anon_sym_PLUS] = ACTIONS(4362), - [anon_sym_DASH] = ACTIONS(4362), - [anon_sym_SLASH] = ACTIONS(4362), - [anon_sym_PERCENT] = ACTIONS(4362), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4398), - [anon_sym_DASH_GT] = ACTIONS(4398), + [907] = { + [anon_sym_LPAREN] = ACTIONS(4416), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(4419), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_EQ] = ACTIONS(4425), + [anon_sym_QMARK] = ACTIONS(4428), + [anon_sym_STAR_EQ] = ACTIONS(4431), + [anon_sym_SLASH_EQ] = ACTIONS(4431), + [anon_sym_PERCENT_EQ] = ACTIONS(4431), + [anon_sym_PLUS_EQ] = ACTIONS(4431), + [anon_sym_DASH_EQ] = ACTIONS(4431), + [anon_sym_LT_LT_EQ] = ACTIONS(4431), + [anon_sym_GT_GT_EQ] = ACTIONS(4431), + [anon_sym_AMP_EQ] = ACTIONS(4431), + [anon_sym_CARET_EQ] = ACTIONS(4431), + [anon_sym_PIPE_EQ] = ACTIONS(4431), + [anon_sym_AMP] = ACTIONS(4434), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE] = ACTIONS(4434), + [anon_sym_CARET] = ACTIONS(4434), + [anon_sym_EQ_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_LT_EQ] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4449), + [anon_sym_GT_GT] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4452), + [anon_sym_PLUS_PLUS] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_DASH_GT] = ACTIONS(4455), [sym_comment] = ACTIONS(121), }, - [904] = { - [anon_sym_LPAREN] = ACTIONS(4401), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4410), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_LT_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_GT_EQ] = ACTIONS(4416), - [anon_sym_AMP_EQ] = ACTIONS(4416), - [anon_sym_CARET_EQ] = ACTIONS(4416), - [anon_sym_PIPE_EQ] = ACTIONS(4416), - [anon_sym_AMP] = ACTIONS(4419), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym_EQ_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4428), - [anon_sym_GT] = ACTIONS(4428), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4434), - [anon_sym_GT_GT] = ACTIONS(4434), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DOT] = ACTIONS(4440), - [anon_sym_DASH_GT] = ACTIONS(4440), + [908] = { + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_STAR_EQ] = ACTIONS(4473), + [anon_sym_SLASH_EQ] = ACTIONS(4473), + [anon_sym_PERCENT_EQ] = ACTIONS(4473), + [anon_sym_PLUS_EQ] = ACTIONS(4473), + [anon_sym_DASH_EQ] = ACTIONS(4473), + [anon_sym_LT_LT_EQ] = ACTIONS(4473), + [anon_sym_GT_GT_EQ] = ACTIONS(4473), + [anon_sym_AMP_EQ] = ACTIONS(4473), + [anon_sym_CARET_EQ] = ACTIONS(4473), + [anon_sym_PIPE_EQ] = ACTIONS(4473), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_LT_LT] = ACTIONS(4491), + [anon_sym_GT_GT] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_SLASH] = ACTIONS(4461), + [anon_sym_PERCENT] = ACTIONS(4461), + [anon_sym_DASH_DASH] = ACTIONS(4494), + [anon_sym_PLUS_PLUS] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_DASH_GT] = ACTIONS(4497), [sym_comment] = ACTIONS(121), }, - [905] = { - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_EQ] = ACTIONS(4446), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_STAR_EQ] = ACTIONS(4452), - [anon_sym_SLASH_EQ] = ACTIONS(4452), - [anon_sym_PERCENT_EQ] = ACTIONS(4452), - [anon_sym_PLUS_EQ] = ACTIONS(4452), - [anon_sym_DASH_EQ] = ACTIONS(4452), - [anon_sym_LT_LT_EQ] = ACTIONS(4452), - [anon_sym_GT_GT_EQ] = ACTIONS(4452), - [anon_sym_AMP_EQ] = ACTIONS(4452), - [anon_sym_CARET_EQ] = ACTIONS(4452), - [anon_sym_PIPE_EQ] = ACTIONS(4452), - [anon_sym_AMP] = ACTIONS(4455), - [anon_sym_PIPE_PIPE] = ACTIONS(4458), - [anon_sym_AMP_AMP] = ACTIONS(4458), - [anon_sym_PIPE] = ACTIONS(4455), - [anon_sym_CARET] = ACTIONS(4455), - [anon_sym_EQ_EQ] = ACTIONS(4461), - [anon_sym_BANG_EQ] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(4464), - [anon_sym_GT] = ACTIONS(4464), - [anon_sym_LT_EQ] = ACTIONS(4467), - [anon_sym_GT_EQ] = ACTIONS(4467), - [anon_sym_LT_LT] = ACTIONS(4470), - [anon_sym_GT_GT] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_SLASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4443), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_DASH_GT] = ACTIONS(3699), + [909] = { + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4506), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_LT_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_GT_EQ] = ACTIONS(4509), + [anon_sym_AMP_EQ] = ACTIONS(4509), + [anon_sym_CARET_EQ] = ACTIONS(4509), + [anon_sym_PIPE_EQ] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4512), + [anon_sym_PIPE_PIPE] = ACTIONS(4515), + [anon_sym_AMP_AMP] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4512), + [anon_sym_CARET] = ACTIONS(4512), + [anon_sym_EQ_EQ] = ACTIONS(4518), + [anon_sym_BANG_EQ] = ACTIONS(4518), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4521), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_LT_LT] = ACTIONS(4527), + [anon_sym_GT_GT] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4500), + [anon_sym_DASH] = ACTIONS(4500), + [anon_sym_SLASH] = ACTIONS(4500), + [anon_sym_PERCENT] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(3749), + [anon_sym_PLUS_PLUS] = ACTIONS(3749), + [anon_sym_DOT] = ACTIONS(3752), + [anon_sym_DASH_GT] = ACTIONS(3752), [sym_comment] = ACTIONS(121), }, - [906] = { - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_SEMI] = ACTIONS(4473), - [anon_sym_extern] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(4473), - [anon_sym_RBRACE] = ACTIONS(4473), - [anon_sym_STAR] = ACTIONS(4473), - [anon_sym_static] = ACTIONS(4476), - [anon_sym_typedef] = ACTIONS(4476), - [anon_sym_auto] = ACTIONS(4476), - [anon_sym_register] = ACTIONS(4476), - [anon_sym_const] = ACTIONS(4476), - [anon_sym_restrict] = ACTIONS(4476), - [anon_sym_volatile] = ACTIONS(4476), - [sym_function_specifier] = ACTIONS(4476), - [anon_sym_unsigned] = ACTIONS(4476), - [anon_sym_long] = ACTIONS(4476), - [anon_sym_short] = ACTIONS(4476), - [anon_sym_enum] = ACTIONS(4476), - [anon_sym_struct] = ACTIONS(4476), - [anon_sym_union] = ACTIONS(4476), - [anon_sym_if] = ACTIONS(4476), - [anon_sym_else] = ACTIONS(4476), - [anon_sym_switch] = ACTIONS(4476), - [anon_sym_case] = ACTIONS(4476), - [anon_sym_default] = ACTIONS(4476), - [anon_sym_while] = ACTIONS(4476), - [anon_sym_do] = ACTIONS(4476), - [anon_sym_for] = ACTIONS(4476), - [anon_sym_return] = ACTIONS(4476), - [anon_sym_break] = ACTIONS(4476), - [anon_sym_continue] = ACTIONS(4476), - [anon_sym_goto] = ACTIONS(4476), - [anon_sym_AMP] = ACTIONS(4473), - [anon_sym_BANG] = ACTIONS(4473), - [anon_sym_TILDE] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4473), - [anon_sym_PLUS_PLUS] = ACTIONS(4473), - [anon_sym_sizeof] = ACTIONS(4476), - [sym_number_literal] = ACTIONS(4476), - [sym_char_literal] = ACTIONS(4476), - [sym_string_literal] = ACTIONS(4476), - [sym_identifier] = ACTIONS(4479), + [910] = { + [anon_sym_LPAREN] = ACTIONS(4530), + [anon_sym_SEMI] = ACTIONS(4530), + [anon_sym_extern] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4530), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_static] = ACTIONS(4533), + [anon_sym_typedef] = ACTIONS(4533), + [anon_sym_auto] = ACTIONS(4533), + [anon_sym_register] = ACTIONS(4533), + [anon_sym_const] = ACTIONS(4533), + [anon_sym_restrict] = ACTIONS(4533), + [anon_sym_volatile] = ACTIONS(4533), + [sym_function_specifier] = ACTIONS(4533), + [anon_sym_unsigned] = ACTIONS(4533), + [anon_sym_long] = ACTIONS(4533), + [anon_sym_short] = ACTIONS(4533), + [anon_sym_enum] = ACTIONS(4533), + [anon_sym_struct] = ACTIONS(4533), + [anon_sym_union] = ACTIONS(4533), + [anon_sym_if] = ACTIONS(4533), + [anon_sym_else] = ACTIONS(4533), + [anon_sym_switch] = ACTIONS(4533), + [anon_sym_case] = ACTIONS(4533), + [anon_sym_default] = ACTIONS(4533), + [anon_sym_while] = ACTIONS(4533), + [anon_sym_do] = ACTIONS(4533), + [anon_sym_for] = ACTIONS(4533), + [anon_sym_return] = ACTIONS(4533), + [anon_sym_break] = ACTIONS(4533), + [anon_sym_continue] = ACTIONS(4533), + [anon_sym_goto] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_TILDE] = ACTIONS(4530), + [anon_sym_PLUS] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH] = ACTIONS(4530), + [anon_sym_PLUS_PLUS] = ACTIONS(4530), + [anon_sym_sizeof] = ACTIONS(4533), + [sym_number_literal] = ACTIONS(4533), + [sym_char_literal] = ACTIONS(4533), + [sym_string_literal] = ACTIONS(4533), + [sym_identifier] = ACTIONS(4536), [sym_comment] = ACTIONS(121), }, - [907] = { - [anon_sym_RPAREN] = ACTIONS(4482), + [911] = { + [anon_sym_RPAREN] = ACTIONS(4539), [sym_comment] = ACTIONS(121), }, - [908] = { - [sym__expression] = STATE(901), + [912] = { + [sym__expression] = STATE(905), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -42338,116 +42940,117 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [909] = { - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_SEMI] = ACTIONS(4484), - [anon_sym_extern] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4484), - [anon_sym_RBRACE] = ACTIONS(4484), - [anon_sym_STAR] = ACTIONS(4484), - [anon_sym_static] = ACTIONS(4491), - [anon_sym_typedef] = ACTIONS(4491), - [anon_sym_auto] = ACTIONS(4491), - [anon_sym_register] = ACTIONS(4491), - [anon_sym_const] = ACTIONS(4491), - [anon_sym_restrict] = ACTIONS(4491), - [anon_sym_volatile] = ACTIONS(4491), - [sym_function_specifier] = ACTIONS(4491), - [anon_sym_unsigned] = ACTIONS(4491), - [anon_sym_long] = ACTIONS(4491), - [anon_sym_short] = ACTIONS(4491), - [anon_sym_enum] = ACTIONS(4491), - [anon_sym_struct] = ACTIONS(4491), - [anon_sym_union] = ACTIONS(4491), - [anon_sym_if] = ACTIONS(4491), - [anon_sym_else] = ACTIONS(4498), - [anon_sym_switch] = ACTIONS(4491), - [anon_sym_case] = ACTIONS(4491), - [anon_sym_default] = ACTIONS(4491), - [anon_sym_while] = ACTIONS(4491), - [anon_sym_do] = ACTIONS(4491), - [anon_sym_for] = ACTIONS(4491), - [anon_sym_return] = ACTIONS(4491), - [anon_sym_break] = ACTIONS(4491), - [anon_sym_continue] = ACTIONS(4491), - [anon_sym_goto] = ACTIONS(4491), - [anon_sym_AMP] = ACTIONS(4484), - [anon_sym_BANG] = ACTIONS(4484), - [anon_sym_TILDE] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(4491), - [anon_sym_DASH_DASH] = ACTIONS(4484), - [anon_sym_PLUS_PLUS] = ACTIONS(4484), - [anon_sym_sizeof] = ACTIONS(4491), - [sym_number_literal] = ACTIONS(4491), - [sym_char_literal] = ACTIONS(4491), - [sym_string_literal] = ACTIONS(4491), - [sym_identifier] = ACTIONS(4506), + [913] = { + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(4541), + [anon_sym_extern] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_STAR] = ACTIONS(4541), + [anon_sym_static] = ACTIONS(4548), + [anon_sym_typedef] = ACTIONS(4548), + [anon_sym_auto] = ACTIONS(4548), + [anon_sym_register] = ACTIONS(4548), + [anon_sym_const] = ACTIONS(4548), + [anon_sym_restrict] = ACTIONS(4548), + [anon_sym_volatile] = ACTIONS(4548), + [sym_function_specifier] = ACTIONS(4548), + [anon_sym_unsigned] = ACTIONS(4548), + [anon_sym_long] = ACTIONS(4548), + [anon_sym_short] = ACTIONS(4548), + [anon_sym_enum] = ACTIONS(4548), + [anon_sym_struct] = ACTIONS(4548), + [anon_sym_union] = ACTIONS(4548), + [anon_sym_if] = ACTIONS(4548), + [anon_sym_else] = ACTIONS(4555), + [anon_sym_switch] = ACTIONS(4548), + [anon_sym_case] = ACTIONS(4548), + [anon_sym_default] = ACTIONS(4548), + [anon_sym_while] = ACTIONS(4548), + [anon_sym_do] = ACTIONS(4548), + [anon_sym_for] = ACTIONS(4548), + [anon_sym_return] = ACTIONS(4548), + [anon_sym_break] = ACTIONS(4548), + [anon_sym_continue] = ACTIONS(4548), + [anon_sym_goto] = ACTIONS(4548), + [anon_sym_AMP] = ACTIONS(4541), + [anon_sym_BANG] = ACTIONS(4541), + [anon_sym_TILDE] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_sizeof] = ACTIONS(4548), + [sym_number_literal] = ACTIONS(4548), + [sym_char_literal] = ACTIONS(4548), + [sym_string_literal] = ACTIONS(4548), + [sym_identifier] = ACTIONS(4563), [sym_comment] = ACTIONS(121), }, - [910] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(4513), - [anon_sym_RPAREN] = ACTIONS(4516), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_STAR_EQ] = ACTIONS(3917), - [anon_sym_SLASH_EQ] = ACTIONS(3917), - [anon_sym_PERCENT_EQ] = ACTIONS(3917), - [anon_sym_PLUS_EQ] = ACTIONS(3917), - [anon_sym_DASH_EQ] = ACTIONS(3917), - [anon_sym_LT_LT_EQ] = ACTIONS(3917), - [anon_sym_GT_GT_EQ] = ACTIONS(3917), - [anon_sym_AMP_EQ] = ACTIONS(3917), - [anon_sym_CARET_EQ] = ACTIONS(3917), - [anon_sym_PIPE_EQ] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_CARET] = ACTIONS(3919), - [anon_sym_EQ_EQ] = ACTIONS(3923), - [anon_sym_BANG_EQ] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_LT_EQ] = ACTIONS(3927), - [anon_sym_GT_EQ] = ACTIONS(3927), - [anon_sym_LT_LT] = ACTIONS(3929), - [anon_sym_GT_GT] = ACTIONS(3929), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3911), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [914] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(4570), + [anon_sym_RPAREN] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3974), + [anon_sym_SLASH_EQ] = ACTIONS(3974), + [anon_sym_PERCENT_EQ] = ACTIONS(3974), + [anon_sym_PLUS_EQ] = ACTIONS(3974), + [anon_sym_DASH_EQ] = ACTIONS(3974), + [anon_sym_LT_LT_EQ] = ACTIONS(3974), + [anon_sym_GT_GT_EQ] = ACTIONS(3974), + [anon_sym_AMP_EQ] = ACTIONS(3974), + [anon_sym_CARET_EQ] = ACTIONS(3974), + [anon_sym_PIPE_EQ] = ACTIONS(3974), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_CARET] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3982), + [anon_sym_GT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3984), + [anon_sym_GT_EQ] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3968), + [anon_sym_SLASH] = ACTIONS(3968), + [anon_sym_PERCENT] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [911] = { - [sym__expression] = STATE(912), - [sym_comma_expression] = STATE(389), + [915] = { + [sym__expression] = STATE(916), + [sym_comma_expression] = STATE(393), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -42464,176 +43067,177 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [912] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_STAR_EQ] = ACTIONS(3917), - [anon_sym_SLASH_EQ] = ACTIONS(3917), - [anon_sym_PERCENT_EQ] = ACTIONS(3917), - [anon_sym_PLUS_EQ] = ACTIONS(3917), - [anon_sym_DASH_EQ] = ACTIONS(3917), - [anon_sym_LT_LT_EQ] = ACTIONS(3917), - [anon_sym_GT_GT_EQ] = ACTIONS(3917), - [anon_sym_AMP_EQ] = ACTIONS(3917), - [anon_sym_CARET_EQ] = ACTIONS(3917), - [anon_sym_PIPE_EQ] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_CARET] = ACTIONS(3919), - [anon_sym_EQ_EQ] = ACTIONS(3923), - [anon_sym_BANG_EQ] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_LT_EQ] = ACTIONS(3927), - [anon_sym_GT_EQ] = ACTIONS(3927), - [anon_sym_LT_LT] = ACTIONS(3929), - [anon_sym_GT_GT] = ACTIONS(3929), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3911), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [916] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3974), + [anon_sym_SLASH_EQ] = ACTIONS(3974), + [anon_sym_PERCENT_EQ] = ACTIONS(3974), + [anon_sym_PLUS_EQ] = ACTIONS(3974), + [anon_sym_DASH_EQ] = ACTIONS(3974), + [anon_sym_LT_LT_EQ] = ACTIONS(3974), + [anon_sym_GT_GT_EQ] = ACTIONS(3974), + [anon_sym_AMP_EQ] = ACTIONS(3974), + [anon_sym_CARET_EQ] = ACTIONS(3974), + [anon_sym_PIPE_EQ] = ACTIONS(3974), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_CARET] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3982), + [anon_sym_GT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3984), + [anon_sym_GT_EQ] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3968), + [anon_sym_SLASH] = ACTIONS(3968), + [anon_sym_PERCENT] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [913] = { - [anon_sym_LPAREN] = ACTIONS(4521), - [anon_sym_COMMA] = ACTIONS(4521), - [anon_sym_RPAREN] = ACTIONS(4521), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(4521), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(749), + [917] = { + [anon_sym_LPAREN] = ACTIONS(4578), + [anon_sym_COMMA] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4578), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_COLON] = ACTIONS(767), [sym_comment] = ACTIONS(121), }, - [914] = { - [sym_enumerator] = STATE(430), - [anon_sym_RBRACE] = ACTIONS(4524), - [sym_identifier] = ACTIONS(1069), + [918] = { + [sym_enumerator] = STATE(434), + [anon_sym_RBRACE] = ACTIONS(4581), + [sym_identifier] = ACTIONS(1087), [sym_comment] = ACTIONS(121), }, - [915] = { - [anon_sym_LPAREN] = ACTIONS(4526), - [anon_sym_COMMA] = ACTIONS(4526), - [anon_sym_RPAREN] = ACTIONS(4526), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_COLON] = ACTIONS(4526), - [sym_identifier] = ACTIONS(4529), + [919] = { + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_RPAREN] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4583), + [sym_identifier] = ACTIONS(4586), [sym_comment] = ACTIONS(121), }, - [916] = { - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_RPAREN] = ACTIONS(4532), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_COLON] = ACTIONS(4532), - [sym_identifier] = ACTIONS(4535), + [920] = { + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_RPAREN] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_COLON] = ACTIONS(4589), + [sym_identifier] = ACTIONS(4592), [sym_comment] = ACTIONS(121), }, - [917] = { - [ts_builtin_sym_end] = ACTIONS(4538), - [anon_sym_POUNDinclude] = ACTIONS(4541), - [anon_sym_POUNDdefine] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4538), - [anon_sym_POUNDifdef] = ACTIONS(4541), - [anon_sym_POUNDifndef] = ACTIONS(4541), - [anon_sym_POUNDendif] = ACTIONS(4541), - [anon_sym_POUNDelse] = ACTIONS(4541), - [sym_preproc_directive] = ACTIONS(4544), - [anon_sym_SEMI] = ACTIONS(4538), - [anon_sym_extern] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(4538), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_STAR] = ACTIONS(4538), - [anon_sym_static] = ACTIONS(4541), - [anon_sym_typedef] = ACTIONS(4541), - [anon_sym_auto] = ACTIONS(4541), - [anon_sym_register] = ACTIONS(4541), - [anon_sym_const] = ACTIONS(4552), - [anon_sym_restrict] = ACTIONS(4552), - [anon_sym_volatile] = ACTIONS(4552), - [sym_function_specifier] = ACTIONS(4541), - [anon_sym_unsigned] = ACTIONS(4552), - [anon_sym_long] = ACTIONS(4552), - [anon_sym_short] = ACTIONS(4552), - [anon_sym_enum] = ACTIONS(4552), - [anon_sym_struct] = ACTIONS(4552), - [anon_sym_union] = ACTIONS(4552), - [anon_sym_if] = ACTIONS(4541), - [anon_sym_switch] = ACTIONS(4541), - [anon_sym_case] = ACTIONS(4541), - [anon_sym_default] = ACTIONS(4541), - [anon_sym_while] = ACTIONS(4541), - [anon_sym_do] = ACTIONS(4541), - [anon_sym_for] = ACTIONS(4541), - [anon_sym_return] = ACTIONS(4541), - [anon_sym_break] = ACTIONS(4541), - [anon_sym_continue] = ACTIONS(4541), - [anon_sym_goto] = ACTIONS(4541), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_TILDE] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4538), - [anon_sym_PLUS_PLUS] = ACTIONS(4538), - [anon_sym_sizeof] = ACTIONS(4541), - [sym_number_literal] = ACTIONS(4541), - [sym_char_literal] = ACTIONS(4541), - [sym_string_literal] = ACTIONS(4541), - [sym_identifier] = ACTIONS(4557), + [921] = { + [ts_builtin_sym_end] = ACTIONS(4595), + [anon_sym_POUNDinclude] = ACTIONS(4598), + [anon_sym_POUNDdefine] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_POUNDifdef] = ACTIONS(4598), + [anon_sym_POUNDifndef] = ACTIONS(4598), + [anon_sym_POUNDendif] = ACTIONS(4598), + [anon_sym_POUNDelse] = ACTIONS(4598), + [sym_preproc_directive] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_extern] = ACTIONS(4598), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_RBRACE] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4595), + [anon_sym_static] = ACTIONS(4598), + [anon_sym_typedef] = ACTIONS(4598), + [anon_sym_auto] = ACTIONS(4598), + [anon_sym_register] = ACTIONS(4598), + [anon_sym_const] = ACTIONS(4609), + [anon_sym_restrict] = ACTIONS(4609), + [anon_sym_volatile] = ACTIONS(4609), + [sym_function_specifier] = ACTIONS(4598), + [anon_sym_unsigned] = ACTIONS(4609), + [anon_sym_long] = ACTIONS(4609), + [anon_sym_short] = ACTIONS(4609), + [anon_sym_enum] = ACTIONS(4609), + [anon_sym_struct] = ACTIONS(4609), + [anon_sym_union] = ACTIONS(4609), + [anon_sym_if] = ACTIONS(4598), + [anon_sym_switch] = ACTIONS(4598), + [anon_sym_case] = ACTIONS(4598), + [anon_sym_default] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_do] = ACTIONS(4598), + [anon_sym_for] = ACTIONS(4598), + [anon_sym_return] = ACTIONS(4598), + [anon_sym_break] = ACTIONS(4598), + [anon_sym_continue] = ACTIONS(4598), + [anon_sym_goto] = ACTIONS(4598), + [anon_sym_AMP] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4598), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DASH_DASH] = ACTIONS(4595), + [anon_sym_PLUS_PLUS] = ACTIONS(4595), + [anon_sym_sizeof] = ACTIONS(4598), + [sym_number_literal] = ACTIONS(4598), + [sym_char_literal] = ACTIONS(4598), + [sym_string_literal] = ACTIONS(4598), + [sym_identifier] = ACTIONS(4614), [sym_comment] = ACTIONS(121), }, - [918] = { - [sym__declarator] = STATE(932), - [sym__abstract_declarator] = STATE(258), + [922] = { + [sym__declarator] = STATE(936), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_LBRACK] = ACTIONS(2399), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2434), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [919] = { - [sym__expression] = STATE(933), + [923] = { + [sym__expression] = STATE(937), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -42650,170 +43254,171 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [920] = { - [sym_compound_statement] = STATE(927), - [aux_sym_declaration_repeat1] = STATE(821), - [aux_sym_struct_declaration_repeat1] = STATE(824), + [924] = { + [sym_compound_statement] = STATE(931), + [aux_sym_declaration_repeat1] = STATE(825), + [aux_sym_struct_declaration_repeat1] = STATE(828), [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(4562), - [anon_sym_RPAREN] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4619), + [anon_sym_RPAREN] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4626), [anon_sym_LBRACE] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(285), [anon_sym_EQ] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(4571), + [anon_sym_COLON] = ACTIONS(4628), [sym_comment] = ACTIONS(121), }, - [921] = { - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(4566), - [anon_sym_RPAREN] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(671), + [925] = { + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4630), + [anon_sym_LBRACK] = ACTIONS(689), [sym_comment] = ACTIONS(121), }, - [922] = { - [aux_sym_declaration_repeat1] = STATE(821), + [926] = { + [aux_sym_declaration_repeat1] = STATE(825), [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_SEMI] = ACTIONS(4578), + [anon_sym_SEMI] = ACTIONS(4635), [sym_comment] = ACTIONS(121), }, - [923] = { - [ts_builtin_sym_end] = ACTIONS(4580), - [anon_sym_POUNDinclude] = ACTIONS(4583), - [anon_sym_POUNDdefine] = ACTIONS(4583), - [anon_sym_LPAREN] = ACTIONS(4580), - [anon_sym_POUNDifdef] = ACTIONS(4583), - [anon_sym_POUNDifndef] = ACTIONS(4583), - [anon_sym_POUNDendif] = ACTIONS(4583), - [anon_sym_POUNDelse] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4586), - [anon_sym_SEMI] = ACTIONS(4580), - [anon_sym_extern] = ACTIONS(4583), - [anon_sym_LBRACE] = ACTIONS(4580), - [anon_sym_RBRACE] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [anon_sym_static] = ACTIONS(4583), - [anon_sym_typedef] = ACTIONS(4583), - [anon_sym_auto] = ACTIONS(4583), - [anon_sym_register] = ACTIONS(4583), - [anon_sym_const] = ACTIONS(4583), - [anon_sym_restrict] = ACTIONS(4583), - [anon_sym_volatile] = ACTIONS(4583), - [sym_function_specifier] = ACTIONS(4583), - [anon_sym_unsigned] = ACTIONS(4583), - [anon_sym_long] = ACTIONS(4583), - [anon_sym_short] = ACTIONS(4583), - [anon_sym_enum] = ACTIONS(4583), - [anon_sym_struct] = ACTIONS(4583), - [anon_sym_union] = ACTIONS(4583), - [anon_sym_if] = ACTIONS(4583), - [anon_sym_switch] = ACTIONS(4583), - [anon_sym_case] = ACTIONS(4583), - [anon_sym_default] = ACTIONS(4583), - [anon_sym_while] = ACTIONS(4583), - [anon_sym_do] = ACTIONS(4583), - [anon_sym_for] = ACTIONS(4583), - [anon_sym_return] = ACTIONS(4583), - [anon_sym_break] = ACTIONS(4583), - [anon_sym_continue] = ACTIONS(4583), - [anon_sym_goto] = ACTIONS(4583), - [anon_sym_AMP] = ACTIONS(4580), - [anon_sym_BANG] = ACTIONS(4580), - [anon_sym_TILDE] = ACTIONS(4580), - [anon_sym_PLUS] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4580), - [anon_sym_PLUS_PLUS] = ACTIONS(4580), - [anon_sym_sizeof] = ACTIONS(4583), - [sym_number_literal] = ACTIONS(4583), - [sym_char_literal] = ACTIONS(4583), - [sym_string_literal] = ACTIONS(4583), - [sym_identifier] = ACTIONS(4586), + [927] = { + [ts_builtin_sym_end] = ACTIONS(4637), + [anon_sym_POUNDinclude] = ACTIONS(4640), + [anon_sym_POUNDdefine] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_POUNDifdef] = ACTIONS(4640), + [anon_sym_POUNDifndef] = ACTIONS(4640), + [anon_sym_POUNDendif] = ACTIONS(4640), + [anon_sym_POUNDelse] = ACTIONS(4640), + [sym_preproc_directive] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_extern] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_STAR] = ACTIONS(4637), + [anon_sym_static] = ACTIONS(4640), + [anon_sym_typedef] = ACTIONS(4640), + [anon_sym_auto] = ACTIONS(4640), + [anon_sym_register] = ACTIONS(4640), + [anon_sym_const] = ACTIONS(4640), + [anon_sym_restrict] = ACTIONS(4640), + [anon_sym_volatile] = ACTIONS(4640), + [sym_function_specifier] = ACTIONS(4640), + [anon_sym_unsigned] = ACTIONS(4640), + [anon_sym_long] = ACTIONS(4640), + [anon_sym_short] = ACTIONS(4640), + [anon_sym_enum] = ACTIONS(4640), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_union] = ACTIONS(4640), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_switch] = ACTIONS(4640), + [anon_sym_case] = ACTIONS(4640), + [anon_sym_default] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_do] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_goto] = ACTIONS(4640), + [anon_sym_AMP] = ACTIONS(4637), + [anon_sym_BANG] = ACTIONS(4637), + [anon_sym_TILDE] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_sizeof] = ACTIONS(4640), + [sym_number_literal] = ACTIONS(4640), + [sym_char_literal] = ACTIONS(4640), + [sym_string_literal] = ACTIONS(4640), + [sym_identifier] = ACTIONS(4643), [sym_comment] = ACTIONS(121), }, - [924] = { - [sym__declarator] = STATE(931), + [928] = { + [sym__declarator] = STATE(935), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym_init_declarator] = STATE(459), + [sym_init_declarator] = STATE(463), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4646), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [925] = { - [ts_builtin_sym_end] = ACTIONS(4580), - [anon_sym_POUNDinclude] = ACTIONS(4583), - [anon_sym_POUNDdefine] = ACTIONS(4583), - [anon_sym_LPAREN] = ACTIONS(4580), - [anon_sym_POUNDifdef] = ACTIONS(4583), - [anon_sym_POUNDifndef] = ACTIONS(4583), - [anon_sym_POUNDendif] = ACTIONS(4583), - [anon_sym_POUNDelse] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4586), - [anon_sym_SEMI] = ACTIONS(4580), - [anon_sym_extern] = ACTIONS(4583), - [anon_sym_LBRACE] = ACTIONS(4580), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4580), - [anon_sym_static] = ACTIONS(4583), - [anon_sym_typedef] = ACTIONS(4583), - [anon_sym_auto] = ACTIONS(4583), - [anon_sym_register] = ACTIONS(4583), - [anon_sym_const] = ACTIONS(4596), - [anon_sym_restrict] = ACTIONS(4596), - [anon_sym_volatile] = ACTIONS(4596), - [sym_function_specifier] = ACTIONS(4583), - [anon_sym_unsigned] = ACTIONS(4596), - [anon_sym_long] = ACTIONS(4596), - [anon_sym_short] = ACTIONS(4596), - [anon_sym_enum] = ACTIONS(4596), - [anon_sym_struct] = ACTIONS(4596), - [anon_sym_union] = ACTIONS(4596), - [anon_sym_if] = ACTIONS(4583), - [anon_sym_switch] = ACTIONS(4583), - [anon_sym_case] = ACTIONS(4583), - [anon_sym_default] = ACTIONS(4583), - [anon_sym_while] = ACTIONS(4583), - [anon_sym_do] = ACTIONS(4583), - [anon_sym_for] = ACTIONS(4583), - [anon_sym_return] = ACTIONS(4583), - [anon_sym_break] = ACTIONS(4583), - [anon_sym_continue] = ACTIONS(4583), - [anon_sym_goto] = ACTIONS(4583), - [anon_sym_AMP] = ACTIONS(4580), - [anon_sym_BANG] = ACTIONS(4580), - [anon_sym_TILDE] = ACTIONS(4580), - [anon_sym_PLUS] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4580), - [anon_sym_PLUS_PLUS] = ACTIONS(4580), - [anon_sym_sizeof] = ACTIONS(4583), - [sym_number_literal] = ACTIONS(4583), - [sym_char_literal] = ACTIONS(4583), - [sym_string_literal] = ACTIONS(4583), - [sym_identifier] = ACTIONS(4601), + [929] = { + [ts_builtin_sym_end] = ACTIONS(4637), + [anon_sym_POUNDinclude] = ACTIONS(4640), + [anon_sym_POUNDdefine] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_POUNDifdef] = ACTIONS(4640), + [anon_sym_POUNDifndef] = ACTIONS(4640), + [anon_sym_POUNDendif] = ACTIONS(4640), + [anon_sym_POUNDelse] = ACTIONS(4640), + [sym_preproc_directive] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_extern] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4637), + [anon_sym_static] = ACTIONS(4640), + [anon_sym_typedef] = ACTIONS(4640), + [anon_sym_auto] = ACTIONS(4640), + [anon_sym_register] = ACTIONS(4640), + [anon_sym_const] = ACTIONS(4653), + [anon_sym_restrict] = ACTIONS(4653), + [anon_sym_volatile] = ACTIONS(4653), + [sym_function_specifier] = ACTIONS(4640), + [anon_sym_unsigned] = ACTIONS(4653), + [anon_sym_long] = ACTIONS(4653), + [anon_sym_short] = ACTIONS(4653), + [anon_sym_enum] = ACTIONS(4653), + [anon_sym_struct] = ACTIONS(4653), + [anon_sym_union] = ACTIONS(4653), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_switch] = ACTIONS(4640), + [anon_sym_case] = ACTIONS(4640), + [anon_sym_default] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_do] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_goto] = ACTIONS(4640), + [anon_sym_AMP] = ACTIONS(4637), + [anon_sym_BANG] = ACTIONS(4637), + [anon_sym_TILDE] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_sizeof] = ACTIONS(4640), + [sym_number_literal] = ACTIONS(4640), + [sym_char_literal] = ACTIONS(4640), + [sym_string_literal] = ACTIONS(4640), + [sym_identifier] = ACTIONS(4658), [sym_comment] = ACTIONS(121), }, - [926] = { - [sym__expression] = STATE(928), + [930] = { + [sym__expression] = STATE(932), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -42830,263 +43435,264 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_sizeof] = ACTIONS(835), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [927] = { - [ts_builtin_sym_end] = ACTIONS(2782), - [anon_sym_POUNDinclude] = ACTIONS(2785), - [anon_sym_POUNDdefine] = ACTIONS(2785), - [anon_sym_POUNDifdef] = ACTIONS(2785), - [anon_sym_POUNDifndef] = ACTIONS(2785), - [anon_sym_POUNDendif] = ACTIONS(2785), - [anon_sym_POUNDelse] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2788), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_auto] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [sym_function_specifier] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [sym_identifier] = ACTIONS(2788), + [931] = { + [ts_builtin_sym_end] = ACTIONS(2835), + [anon_sym_POUNDinclude] = ACTIONS(2838), + [anon_sym_POUNDdefine] = ACTIONS(2838), + [anon_sym_POUNDifdef] = ACTIONS(2838), + [anon_sym_POUNDifndef] = ACTIONS(2838), + [anon_sym_POUNDendif] = ACTIONS(2838), + [anon_sym_POUNDelse] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_auto] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [sym_function_specifier] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2841), [sym_comment] = ACTIONS(121), }, - [928] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(4606), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [932] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(4663), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [929] = { - [anon_sym_RBRACE] = ACTIONS(4608), - [anon_sym_const] = ACTIONS(4611), - [anon_sym_restrict] = ACTIONS(4611), - [anon_sym_volatile] = ACTIONS(4611), - [anon_sym_unsigned] = ACTIONS(4611), - [anon_sym_long] = ACTIONS(4611), - [anon_sym_short] = ACTIONS(4611), - [anon_sym_enum] = ACTIONS(4611), - [anon_sym_struct] = ACTIONS(4611), - [anon_sym_union] = ACTIONS(4611), - [sym_identifier] = ACTIONS(4614), + [933] = { + [anon_sym_RBRACE] = ACTIONS(4665), + [anon_sym_const] = ACTIONS(4668), + [anon_sym_restrict] = ACTIONS(4668), + [anon_sym_volatile] = ACTIONS(4668), + [anon_sym_unsigned] = ACTIONS(4668), + [anon_sym_long] = ACTIONS(4668), + [anon_sym_short] = ACTIONS(4668), + [anon_sym_enum] = ACTIONS(4668), + [anon_sym_struct] = ACTIONS(4668), + [anon_sym_union] = ACTIONS(4668), + [sym_identifier] = ACTIONS(4671), [sym_comment] = ACTIONS(121), }, - [930] = { - [sym__declarator] = STATE(932), + [934] = { + [sym__declarator] = STATE(936), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4646), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [931] = { + [935] = { [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_SEMI] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4674), [anon_sym_LBRACK] = ACTIONS(285), [anon_sym_EQ] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_COLON] = ACTIONS(1051), [sym_comment] = ACTIONS(121), }, - [932] = { - [anon_sym_LPAREN] = ACTIONS(2719), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(755), + [936] = { + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_COLON] = ACTIONS(773), [sym_comment] = ACTIONS(121), }, - [933] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(871), - [anon_sym_SLASH_EQ] = ACTIONS(871), - [anon_sym_PERCENT_EQ] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(871), - [anon_sym_DASH_EQ] = ACTIONS(871), - [anon_sym_LT_LT_EQ] = ACTIONS(871), - [anon_sym_GT_GT_EQ] = ACTIONS(871), - [anon_sym_AMP_EQ] = ACTIONS(871), - [anon_sym_CARET_EQ] = ACTIONS(871), - [anon_sym_PIPE_EQ] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [937] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [934] = { - [sym__declarator] = STATE(936), - [sym__abstract_declarator] = STATE(266), + [938] = { + [sym__declarator] = STATE(940), + [sym__abstract_declarator] = STATE(270), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym_init_declarator] = STATE(492), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(4620), - [anon_sym_LBRACK] = ACTIONS(643), + [sym_abstract_array_declarator] = STATE(212), + [sym_init_declarator] = STATE(496), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(4677), + [anon_sym_LBRACK] = ACTIONS(661), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [935] = { - [sym__declarator] = STATE(932), - [sym__abstract_declarator] = STATE(258), + [939] = { + [sym__declarator] = STATE(936), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(4620), - [anon_sym_LBRACK] = ACTIONS(2399), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(4677), + [anon_sym_LBRACK] = ACTIONS(2434), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [936] = { - [sym_compound_statement] = STATE(723), - [aux_sym_declaration_repeat1] = STATE(493), + [940] = { + [sym_compound_statement] = STATE(727), + [aux_sym_declaration_repeat1] = STATE(497), [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(4622), - [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_COMMA] = ACTIONS(4679), + [anon_sym_RPAREN] = ACTIONS(785), [anon_sym_SEMI] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(285), [anon_sym_EQ] = ACTIONS(287), [sym_comment] = ACTIONS(121), }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(4625), - [anon_sym_POUNDinclude] = ACTIONS(4628), - [anon_sym_POUNDdefine] = ACTIONS(4628), - [anon_sym_POUNDifdef] = ACTIONS(4628), - [anon_sym_POUNDifndef] = ACTIONS(4628), - [anon_sym_POUNDendif] = ACTIONS(4628), - [anon_sym_POUNDelse] = ACTIONS(4628), - [sym_preproc_directive] = ACTIONS(4631), - [anon_sym_extern] = ACTIONS(4628), - [anon_sym_RBRACE] = ACTIONS(4625), - [anon_sym_static] = ACTIONS(4628), - [anon_sym_typedef] = ACTIONS(4628), - [anon_sym_auto] = ACTIONS(4628), - [anon_sym_register] = ACTIONS(4628), - [anon_sym_const] = ACTIONS(4628), - [anon_sym_restrict] = ACTIONS(4628), - [anon_sym_volatile] = ACTIONS(4628), - [sym_function_specifier] = ACTIONS(4628), - [anon_sym_unsigned] = ACTIONS(4628), - [anon_sym_long] = ACTIONS(4628), - [anon_sym_short] = ACTIONS(4628), - [anon_sym_enum] = ACTIONS(4628), - [anon_sym_struct] = ACTIONS(4628), - [anon_sym_union] = ACTIONS(4628), - [sym_identifier] = ACTIONS(4631), + [941] = { + [ts_builtin_sym_end] = ACTIONS(4682), + [anon_sym_POUNDinclude] = ACTIONS(4685), + [anon_sym_POUNDdefine] = ACTIONS(4685), + [anon_sym_POUNDifdef] = ACTIONS(4685), + [anon_sym_POUNDifndef] = ACTIONS(4685), + [anon_sym_POUNDendif] = ACTIONS(4685), + [anon_sym_POUNDelse] = ACTIONS(4685), + [sym_preproc_directive] = ACTIONS(4688), + [anon_sym_extern] = ACTIONS(4685), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_static] = ACTIONS(4685), + [anon_sym_typedef] = ACTIONS(4685), + [anon_sym_auto] = ACTIONS(4685), + [anon_sym_register] = ACTIONS(4685), + [anon_sym_const] = ACTIONS(4685), + [anon_sym_restrict] = ACTIONS(4685), + [anon_sym_volatile] = ACTIONS(4685), + [sym_function_specifier] = ACTIONS(4685), + [anon_sym_unsigned] = ACTIONS(4685), + [anon_sym_long] = ACTIONS(4685), + [anon_sym_short] = ACTIONS(4685), + [anon_sym_enum] = ACTIONS(4685), + [anon_sym_struct] = ACTIONS(4685), + [anon_sym_union] = ACTIONS(4685), + [sym_identifier] = ACTIONS(4688), [sym_comment] = ACTIONS(121), }, - [938] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [942] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_type_name] = STATE(268), + [sym_type_name] = STATE(272), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1717), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1733), + [anon_sym_RPAREN] = ACTIONS(1735), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -43096,24 +43702,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [sym_identifier] = ACTIONS(4634), + [sym_identifier] = ACTIONS(4691), [sym_comment] = ACTIONS(121), }, - [939] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [943] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), - [sym__enum_specifier_contents] = STATE(425), + [sym__enum_specifier_contents] = STATE(429), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(275), - [sym_enumerator] = STATE(426), + [sym_struct_declaration] = STATE(279), + [sym_enumerator] = STATE(430), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym_struct_specifier_repeat1] = STATE(942), - [anon_sym_RBRACE] = ACTIONS(4636), + [aux_sym_struct_specifier_repeat1] = STATE(946), + [anon_sym_RBRACE] = ACTIONS(4693), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -43123,43 +43729,43 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [sym_identifier] = ACTIONS(4638), + [sym_identifier] = ACTIONS(4695), [sym_comment] = ACTIONS(121), }, - [940] = { - [anon_sym_LPAREN] = ACTIONS(4640), - [anon_sym_COMMA] = ACTIONS(4640), - [anon_sym_RPAREN] = ACTIONS(4640), - [anon_sym_SEMI] = ACTIONS(4640), - [anon_sym_STAR] = ACTIONS(4640), - [anon_sym_LBRACK] = ACTIONS(4640), - [anon_sym_COLON] = ACTIONS(4640), - [sym_identifier] = ACTIONS(4643), + [944] = { + [anon_sym_LPAREN] = ACTIONS(4697), + [anon_sym_COMMA] = ACTIONS(4697), + [anon_sym_RPAREN] = ACTIONS(4697), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_STAR] = ACTIONS(4697), + [anon_sym_LBRACK] = ACTIONS(4697), + [anon_sym_COLON] = ACTIONS(4697), + [sym_identifier] = ACTIONS(4700), [sym_comment] = ACTIONS(121), }, - [941] = { + [945] = { [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(1077), + [anon_sym_COMMA] = ACTIONS(1095), [anon_sym_SEMI] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(1077), + [anon_sym_RBRACE] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(196), - [anon_sym_EQ] = ACTIONS(1079), + [anon_sym_EQ] = ACTIONS(1097), [anon_sym_COLON] = ACTIONS(196), [sym_identifier] = ACTIONS(198), [sym_comment] = ACTIONS(121), }, - [942] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(274), + [946] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_struct_declaration] = STATE(279), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(276), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4703), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -43172,80 +43778,80 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [943] = { - [anon_sym_LPAREN] = ACTIONS(4648), - [anon_sym_COMMA] = ACTIONS(4648), - [anon_sym_RPAREN] = ACTIONS(4648), - [anon_sym_SEMI] = ACTIONS(4648), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(4648), - [anon_sym_COLON] = ACTIONS(4648), - [sym_identifier] = ACTIONS(4651), + [947] = { + [anon_sym_LPAREN] = ACTIONS(4705), + [anon_sym_COMMA] = ACTIONS(4705), + [anon_sym_RPAREN] = ACTIONS(4705), + [anon_sym_SEMI] = ACTIONS(4705), + [anon_sym_STAR] = ACTIONS(4705), + [anon_sym_LBRACK] = ACTIONS(4705), + [anon_sym_COLON] = ACTIONS(4705), + [sym_identifier] = ACTIONS(4708), [sym_comment] = ACTIONS(121), }, - [944] = { - [aux_sym_preproc_params_repeat1] = STATE(755), + [948] = { + [aux_sym_preproc_params_repeat1] = STATE(759), [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(1757), + [anon_sym_RPAREN] = ACTIONS(4711), [anon_sym_STAR] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(196), [sym_comment] = ACTIONS(121), }, - [945] = { - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_COMMA] = ACTIONS(457), - [anon_sym_RPAREN] = ACTIONS(457), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(4657), - [anon_sym_RBRACK] = ACTIONS(457), - [anon_sym_EQ] = ACTIONS(4660), - [anon_sym_COLON] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_STAR_EQ] = ACTIONS(457), - [anon_sym_SLASH_EQ] = ACTIONS(457), - [anon_sym_PERCENT_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_LT_LT_EQ] = ACTIONS(457), - [anon_sym_GT_GT_EQ] = ACTIONS(457), - [anon_sym_AMP_EQ] = ACTIONS(457), - [anon_sym_CARET_EQ] = ACTIONS(457), - [anon_sym_PIPE_EQ] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_DASH_GT] = ACTIONS(457), + [949] = { + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(4714), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(4717), + [anon_sym_COLON] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_STAR_EQ] = ACTIONS(461), + [anon_sym_SLASH_EQ] = ACTIONS(461), + [anon_sym_PERCENT_EQ] = ACTIONS(461), + [anon_sym_PLUS_EQ] = ACTIONS(461), + [anon_sym_DASH_EQ] = ACTIONS(461), + [anon_sym_LT_LT_EQ] = ACTIONS(461), + [anon_sym_GT_GT_EQ] = ACTIONS(461), + [anon_sym_AMP_EQ] = ACTIONS(461), + [anon_sym_CARET_EQ] = ACTIONS(461), + [anon_sym_PIPE_EQ] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_LT_LT] = ACTIONS(463), + [anon_sym_GT_GT] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_SLASH] = ACTIONS(463), + [anon_sym_PERCENT] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_PLUS_PLUS] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_DASH_GT] = ACTIONS(461), [sym_comment] = ACTIONS(121), }, - [946] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [950] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -43262,12 +43868,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(948), + [sym_type_name] = STATE(952), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -43277,71 +43884,71 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [947] = { - [anon_sym_LPAREN] = ACTIONS(4241), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(4663), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(4666), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_STAR_EQ] = ACTIONS(4672), - [anon_sym_SLASH_EQ] = ACTIONS(4672), - [anon_sym_PERCENT_EQ] = ACTIONS(4672), - [anon_sym_PLUS_EQ] = ACTIONS(4672), - [anon_sym_DASH_EQ] = ACTIONS(4672), - [anon_sym_LT_LT_EQ] = ACTIONS(4672), - [anon_sym_GT_GT_EQ] = ACTIONS(4672), - [anon_sym_AMP_EQ] = ACTIONS(4672), - [anon_sym_CARET_EQ] = ACTIONS(4672), - [anon_sym_PIPE_EQ] = ACTIONS(4672), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_EQ_EQ] = ACTIONS(4681), - [anon_sym_BANG_EQ] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4684), - [anon_sym_GT] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4687), - [anon_sym_GT_EQ] = ACTIONS(4687), - [anon_sym_LT_LT] = ACTIONS(4690), - [anon_sym_GT_GT] = ACTIONS(4690), - [anon_sym_PLUS] = ACTIONS(4663), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4663), - [anon_sym_PERCENT] = ACTIONS(4663), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4280), - [anon_sym_DASH_GT] = ACTIONS(4280), + [951] = { + [anon_sym_LPAREN] = ACTIONS(4298), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4304), + [anon_sym_RBRACK] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(4723), + [anon_sym_COLON] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(4726), + [anon_sym_STAR_EQ] = ACTIONS(4729), + [anon_sym_SLASH_EQ] = ACTIONS(4729), + [anon_sym_PERCENT_EQ] = ACTIONS(4729), + [anon_sym_PLUS_EQ] = ACTIONS(4729), + [anon_sym_DASH_EQ] = ACTIONS(4729), + [anon_sym_LT_LT_EQ] = ACTIONS(4729), + [anon_sym_GT_GT_EQ] = ACTIONS(4729), + [anon_sym_AMP_EQ] = ACTIONS(4729), + [anon_sym_CARET_EQ] = ACTIONS(4729), + [anon_sym_PIPE_EQ] = ACTIONS(4729), + [anon_sym_AMP] = ACTIONS(4732), + [anon_sym_PIPE_PIPE] = ACTIONS(4735), + [anon_sym_AMP_AMP] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(4732), + [anon_sym_CARET] = ACTIONS(4732), + [anon_sym_EQ_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4741), + [anon_sym_GT] = ACTIONS(4741), + [anon_sym_LT_EQ] = ACTIONS(4744), + [anon_sym_GT_EQ] = ACTIONS(4744), + [anon_sym_LT_LT] = ACTIONS(4747), + [anon_sym_GT_GT] = ACTIONS(4747), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4720), + [anon_sym_PERCENT] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DOT] = ACTIONS(4337), + [anon_sym_DASH_GT] = ACTIONS(4337), [sym_comment] = ACTIONS(121), }, - [948] = { - [anon_sym_RPAREN] = ACTIONS(4693), + [952] = { + [anon_sym_RPAREN] = ACTIONS(4750), [sym_comment] = ACTIONS(121), }, - [949] = { - [sym__expression] = STATE(851), + [953] = { + [sym__expression] = STATE(855), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -43358,461 +43965,462 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_sizeof] = ACTIONS(2412), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(3491), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(3497), + [anon_sym_PLUS_PLUS] = ACTIONS(3497), + [anon_sym_sizeof] = ACTIONS(2447), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [950] = { - [anon_sym_LPAREN] = ACTIONS(4698), - [anon_sym_COMMA] = ACTIONS(4702), - [anon_sym_RPAREN] = ACTIONS(4702), - [anon_sym_SEMI] = ACTIONS(4702), - [anon_sym_RBRACE] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4709), - [anon_sym_RBRACK] = ACTIONS(4702), - [anon_sym_EQ] = ACTIONS(4713), - [anon_sym_COLON] = ACTIONS(4702), - [anon_sym_QMARK] = ACTIONS(4717), - [anon_sym_STAR_EQ] = ACTIONS(4721), - [anon_sym_SLASH_EQ] = ACTIONS(4721), - [anon_sym_PERCENT_EQ] = ACTIONS(4721), - [anon_sym_PLUS_EQ] = ACTIONS(4721), - [anon_sym_DASH_EQ] = ACTIONS(4721), - [anon_sym_LT_LT_EQ] = ACTIONS(4721), - [anon_sym_GT_GT_EQ] = ACTIONS(4721), - [anon_sym_AMP_EQ] = ACTIONS(4721), - [anon_sym_CARET_EQ] = ACTIONS(4721), - [anon_sym_PIPE_EQ] = ACTIONS(4721), - [anon_sym_AMP] = ACTIONS(4725), - [anon_sym_PIPE_PIPE] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4725), - [anon_sym_CARET] = ACTIONS(4725), - [anon_sym_EQ_EQ] = ACTIONS(4733), - [anon_sym_BANG_EQ] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(4737), - [anon_sym_GT] = ACTIONS(4737), - [anon_sym_LT_EQ] = ACTIONS(4741), - [anon_sym_GT_EQ] = ACTIONS(4741), - [anon_sym_LT_LT] = ACTIONS(4745), - [anon_sym_GT_GT] = ACTIONS(4745), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4749), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_DASH_GT] = ACTIONS(4753), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [951] = { - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(4757), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(465), - [anon_sym_EQ] = ACTIONS(4760), - [anon_sym_COLON] = ACTIONS(465), - [anon_sym_QMARK] = ACTIONS(4763), - [anon_sym_STAR_EQ] = ACTIONS(4766), - [anon_sym_SLASH_EQ] = ACTIONS(4766), - [anon_sym_PERCENT_EQ] = ACTIONS(4766), - [anon_sym_PLUS_EQ] = ACTIONS(4766), - [anon_sym_DASH_EQ] = ACTIONS(4766), - [anon_sym_LT_LT_EQ] = ACTIONS(4766), - [anon_sym_GT_GT_EQ] = ACTIONS(4766), - [anon_sym_AMP_EQ] = ACTIONS(4766), - [anon_sym_CARET_EQ] = ACTIONS(4766), - [anon_sym_PIPE_EQ] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4772), - [anon_sym_PIPE] = ACTIONS(4769), - [anon_sym_CARET] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4775), - [anon_sym_BANG_EQ] = ACTIONS(4775), - [anon_sym_LT] = ACTIONS(4778), - [anon_sym_GT] = ACTIONS(4778), - [anon_sym_LT_EQ] = ACTIONS(4781), - [anon_sym_GT_EQ] = ACTIONS(4781), - [anon_sym_LT_LT] = ACTIONS(4784), - [anon_sym_GT_GT] = ACTIONS(4784), - [anon_sym_PLUS] = ACTIONS(4757), - [anon_sym_DASH] = ACTIONS(4757), - [anon_sym_SLASH] = ACTIONS(4757), - [anon_sym_PERCENT] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(4011), + [954] = { + [anon_sym_LPAREN] = ACTIONS(4755), + [anon_sym_COMMA] = ACTIONS(4759), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_SEMI] = ACTIONS(4759), + [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_RBRACK] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_COLON] = ACTIONS(4759), + [anon_sym_QMARK] = ACTIONS(4774), + [anon_sym_STAR_EQ] = ACTIONS(4778), + [anon_sym_SLASH_EQ] = ACTIONS(4778), + [anon_sym_PERCENT_EQ] = ACTIONS(4778), + [anon_sym_PLUS_EQ] = ACTIONS(4778), + [anon_sym_DASH_EQ] = ACTIONS(4778), + [anon_sym_LT_LT_EQ] = ACTIONS(4778), + [anon_sym_GT_GT_EQ] = ACTIONS(4778), + [anon_sym_AMP_EQ] = ACTIONS(4778), + [anon_sym_CARET_EQ] = ACTIONS(4778), + [anon_sym_PIPE_EQ] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4782), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4782), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_LT_LT] = ACTIONS(4802), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DOT] = ACTIONS(4810), + [anon_sym_DASH_GT] = ACTIONS(4810), [sym_comment] = ACTIONS(121), }, - [952] = { - [anon_sym_LPAREN] = ACTIONS(4014), + [955] = { + [anon_sym_LPAREN] = ACTIONS(4029), [anon_sym_COMMA] = ACTIONS(469), [anon_sym_RPAREN] = ACTIONS(469), [anon_sym_SEMI] = ACTIONS(469), [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4035), [anon_sym_RBRACK] = ACTIONS(469), - [anon_sym_EQ] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4817), [anon_sym_COLON] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(4793), - [anon_sym_STAR_EQ] = ACTIONS(4796), - [anon_sym_SLASH_EQ] = ACTIONS(4796), - [anon_sym_PERCENT_EQ] = ACTIONS(4796), - [anon_sym_PLUS_EQ] = ACTIONS(4796), - [anon_sym_DASH_EQ] = ACTIONS(4796), - [anon_sym_LT_LT_EQ] = ACTIONS(4796), - [anon_sym_GT_GT_EQ] = ACTIONS(4796), - [anon_sym_AMP_EQ] = ACTIONS(4796), - [anon_sym_CARET_EQ] = ACTIONS(4796), - [anon_sym_PIPE_EQ] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_EQ_EQ] = ACTIONS(4805), - [anon_sym_BANG_EQ] = ACTIONS(4805), - [anon_sym_LT] = ACTIONS(4808), - [anon_sym_GT] = ACTIONS(4808), - [anon_sym_LT_EQ] = ACTIONS(4811), - [anon_sym_GT_EQ] = ACTIONS(4811), - [anon_sym_LT_LT] = ACTIONS(4814), - [anon_sym_GT_GT] = ACTIONS(4814), - [anon_sym_PLUS] = ACTIONS(4787), - [anon_sym_DASH] = ACTIONS(4787), - [anon_sym_SLASH] = ACTIONS(4787), - [anon_sym_PERCENT] = ACTIONS(4787), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_DOT] = ACTIONS(4053), - [anon_sym_DASH_GT] = ACTIONS(4053), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4823), + [anon_sym_SLASH_EQ] = ACTIONS(4823), + [anon_sym_PERCENT_EQ] = ACTIONS(4823), + [anon_sym_PLUS_EQ] = ACTIONS(4823), + [anon_sym_DASH_EQ] = ACTIONS(4823), + [anon_sym_LT_LT_EQ] = ACTIONS(4823), + [anon_sym_GT_GT_EQ] = ACTIONS(4823), + [anon_sym_AMP_EQ] = ACTIONS(4823), + [anon_sym_CARET_EQ] = ACTIONS(4823), + [anon_sym_PIPE_EQ] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4835), + [anon_sym_GT] = ACTIONS(4835), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_LT_LT] = ACTIONS(4841), + [anon_sym_GT_GT] = ACTIONS(4841), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4065), + [anon_sym_PLUS_PLUS] = ACTIONS(4065), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_DASH_GT] = ACTIONS(4068), [sym_comment] = ACTIONS(121), }, - [953] = { - [anon_sym_LPAREN] = ACTIONS(4056), + [956] = { + [anon_sym_LPAREN] = ACTIONS(4071), [anon_sym_COMMA] = ACTIONS(473), [anon_sym_RPAREN] = ACTIONS(473), [anon_sym_SEMI] = ACTIONS(473), [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4077), [anon_sym_RBRACK] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4847), [anon_sym_COLON] = ACTIONS(473), - [anon_sym_QMARK] = ACTIONS(4823), - [anon_sym_STAR_EQ] = ACTIONS(4826), - [anon_sym_SLASH_EQ] = ACTIONS(4826), - [anon_sym_PERCENT_EQ] = ACTIONS(4826), - [anon_sym_PLUS_EQ] = ACTIONS(4826), - [anon_sym_DASH_EQ] = ACTIONS(4826), - [anon_sym_LT_LT_EQ] = ACTIONS(4826), - [anon_sym_GT_GT_EQ] = ACTIONS(4826), - [anon_sym_AMP_EQ] = ACTIONS(4826), - [anon_sym_CARET_EQ] = ACTIONS(4826), - [anon_sym_PIPE_EQ] = ACTIONS(4826), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_PIPE_PIPE] = ACTIONS(4832), - [anon_sym_AMP_AMP] = ACTIONS(4832), - [anon_sym_PIPE] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4838), - [anon_sym_GT] = ACTIONS(4838), - [anon_sym_LT_EQ] = ACTIONS(4841), - [anon_sym_GT_EQ] = ACTIONS(4841), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4817), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4095), - [anon_sym_DASH_GT] = ACTIONS(4095), + [anon_sym_QMARK] = ACTIONS(4850), + [anon_sym_STAR_EQ] = ACTIONS(4853), + [anon_sym_SLASH_EQ] = ACTIONS(4853), + [anon_sym_PERCENT_EQ] = ACTIONS(4853), + [anon_sym_PLUS_EQ] = ACTIONS(4853), + [anon_sym_DASH_EQ] = ACTIONS(4853), + [anon_sym_LT_LT_EQ] = ACTIONS(4853), + [anon_sym_GT_GT_EQ] = ACTIONS(4853), + [anon_sym_AMP_EQ] = ACTIONS(4853), + [anon_sym_CARET_EQ] = ACTIONS(4853), + [anon_sym_PIPE_EQ] = ACTIONS(4853), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_PIPE_PIPE] = ACTIONS(4859), + [anon_sym_AMP_AMP] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_CARET] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4862), + [anon_sym_BANG_EQ] = ACTIONS(4862), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_LT_LT] = ACTIONS(4871), + [anon_sym_GT_GT] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(4107), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4110), [sym_comment] = ACTIONS(121), }, - [954] = { - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(4850), - [anon_sym_COLON] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_STAR_EQ] = ACTIONS(4856), - [anon_sym_SLASH_EQ] = ACTIONS(4856), - [anon_sym_PERCENT_EQ] = ACTIONS(4856), - [anon_sym_PLUS_EQ] = ACTIONS(4856), - [anon_sym_DASH_EQ] = ACTIONS(4856), - [anon_sym_LT_LT_EQ] = ACTIONS(4856), - [anon_sym_GT_GT_EQ] = ACTIONS(4856), - [anon_sym_AMP_EQ] = ACTIONS(4856), - [anon_sym_CARET_EQ] = ACTIONS(4856), - [anon_sym_PIPE_EQ] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4859), - [anon_sym_CARET] = ACTIONS(4859), - [anon_sym_EQ_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4871), - [anon_sym_GT_EQ] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(4874), - [anon_sym_GT_GT] = ACTIONS(4874), - [anon_sym_PLUS] = ACTIONS(4847), - [anon_sym_DASH] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4847), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4398), - [anon_sym_DASH_GT] = ACTIONS(4398), + [957] = { + [anon_sym_LPAREN] = ACTIONS(4113), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_RBRACK] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_COLON] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4883), + [anon_sym_SLASH_EQ] = ACTIONS(4883), + [anon_sym_PERCENT_EQ] = ACTIONS(4883), + [anon_sym_PLUS_EQ] = ACTIONS(4883), + [anon_sym_DASH_EQ] = ACTIONS(4883), + [anon_sym_LT_LT_EQ] = ACTIONS(4883), + [anon_sym_GT_GT_EQ] = ACTIONS(4883), + [anon_sym_AMP_EQ] = ACTIONS(4883), + [anon_sym_CARET_EQ] = ACTIONS(4883), + [anon_sym_PIPE_EQ] = ACTIONS(4883), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4901), + [anon_sym_GT_GT] = ACTIONS(4901), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), [sym_comment] = ACTIONS(121), }, - [955] = { - [anon_sym_LPAREN] = ACTIONS(4401), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_EQ] = ACTIONS(4880), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(4883), - [anon_sym_STAR_EQ] = ACTIONS(4886), - [anon_sym_SLASH_EQ] = ACTIONS(4886), - [anon_sym_PERCENT_EQ] = ACTIONS(4886), - [anon_sym_PLUS_EQ] = ACTIONS(4886), - [anon_sym_DASH_EQ] = ACTIONS(4886), - [anon_sym_LT_LT_EQ] = ACTIONS(4886), - [anon_sym_GT_GT_EQ] = ACTIONS(4886), - [anon_sym_AMP_EQ] = ACTIONS(4886), - [anon_sym_CARET_EQ] = ACTIONS(4886), - [anon_sym_PIPE_EQ] = ACTIONS(4886), - [anon_sym_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4889), - [anon_sym_CARET] = ACTIONS(4889), - [anon_sym_EQ_EQ] = ACTIONS(4895), - [anon_sym_BANG_EQ] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_LT_EQ] = ACTIONS(4901), - [anon_sym_GT_EQ] = ACTIONS(4901), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_PERCENT] = ACTIONS(4877), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DOT] = ACTIONS(4440), - [anon_sym_DASH_GT] = ACTIONS(4440), + [958] = { + [anon_sym_LPAREN] = ACTIONS(4416), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_RBRACK] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_QMARK] = ACTIONS(4910), + [anon_sym_STAR_EQ] = ACTIONS(4913), + [anon_sym_SLASH_EQ] = ACTIONS(4913), + [anon_sym_PERCENT_EQ] = ACTIONS(4913), + [anon_sym_PLUS_EQ] = ACTIONS(4913), + [anon_sym_DASH_EQ] = ACTIONS(4913), + [anon_sym_LT_LT_EQ] = ACTIONS(4913), + [anon_sym_GT_GT_EQ] = ACTIONS(4913), + [anon_sym_AMP_EQ] = ACTIONS(4913), + [anon_sym_CARET_EQ] = ACTIONS(4913), + [anon_sym_PIPE_EQ] = ACTIONS(4913), + [anon_sym_AMP] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4919), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_LT_LT] = ACTIONS(4931), + [anon_sym_GT_GT] = ACTIONS(4931), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4452), + [anon_sym_PLUS_PLUS] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_DASH_GT] = ACTIONS(4455), [sym_comment] = ACTIONS(121), }, - [956] = { - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_EQ] = ACTIONS(4910), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(4913), - [anon_sym_STAR_EQ] = ACTIONS(4916), - [anon_sym_SLASH_EQ] = ACTIONS(4916), - [anon_sym_PERCENT_EQ] = ACTIONS(4916), - [anon_sym_PLUS_EQ] = ACTIONS(4916), - [anon_sym_DASH_EQ] = ACTIONS(4916), - [anon_sym_LT_LT_EQ] = ACTIONS(4916), - [anon_sym_GT_GT_EQ] = ACTIONS(4916), - [anon_sym_AMP_EQ] = ACTIONS(4916), - [anon_sym_CARET_EQ] = ACTIONS(4916), - [anon_sym_PIPE_EQ] = ACTIONS(4916), - [anon_sym_AMP] = ACTIONS(4919), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE] = ACTIONS(4919), - [anon_sym_CARET] = ACTIONS(4919), - [anon_sym_EQ_EQ] = ACTIONS(4925), - [anon_sym_BANG_EQ] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4928), - [anon_sym_GT] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4931), - [anon_sym_LT_LT] = ACTIONS(4934), - [anon_sym_GT_GT] = ACTIONS(4934), - [anon_sym_PLUS] = ACTIONS(4907), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_SLASH] = ACTIONS(4907), - [anon_sym_PERCENT] = ACTIONS(4907), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4167), - [anon_sym_DASH_GT] = ACTIONS(4167), + [959] = { + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_RBRACK] = ACTIONS(1025), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4943), + [anon_sym_SLASH_EQ] = ACTIONS(4943), + [anon_sym_PERCENT_EQ] = ACTIONS(4943), + [anon_sym_PLUS_EQ] = ACTIONS(4943), + [anon_sym_DASH_EQ] = ACTIONS(4943), + [anon_sym_LT_LT_EQ] = ACTIONS(4943), + [anon_sym_GT_GT_EQ] = ACTIONS(4943), + [anon_sym_AMP_EQ] = ACTIONS(4943), + [anon_sym_CARET_EQ] = ACTIONS(4943), + [anon_sym_PIPE_EQ] = ACTIONS(4943), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_PIPE_PIPE] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_PIPE] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_LT_LT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4494), + [anon_sym_PLUS_PLUS] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_DASH_GT] = ACTIONS(4497), [sym_comment] = ACTIONS(121), }, - [957] = { - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4944), - [anon_sym_LBRACK] = ACTIONS(4948), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4952), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_STAR_EQ] = ACTIONS(4960), - [anon_sym_SLASH_EQ] = ACTIONS(4960), - [anon_sym_PERCENT_EQ] = ACTIONS(4960), - [anon_sym_PLUS_EQ] = ACTIONS(4960), - [anon_sym_DASH_EQ] = ACTIONS(4960), - [anon_sym_LT_LT_EQ] = ACTIONS(4960), - [anon_sym_GT_GT_EQ] = ACTIONS(4960), - [anon_sym_AMP_EQ] = ACTIONS(4960), - [anon_sym_CARET_EQ] = ACTIONS(4960), - [anon_sym_PIPE_EQ] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_PIPE_PIPE] = ACTIONS(4968), - [anon_sym_AMP_AMP] = ACTIONS(4968), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_LT_EQ] = ACTIONS(4980), - [anon_sym_GT_EQ] = ACTIONS(4980), - [anon_sym_LT_LT] = ACTIONS(4984), - [anon_sym_GT_GT] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DASH_GT] = ACTIONS(4992), + [960] = { + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_COLON] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4973), + [anon_sym_SLASH_EQ] = ACTIONS(4973), + [anon_sym_PERCENT_EQ] = ACTIONS(4973), + [anon_sym_PLUS_EQ] = ACTIONS(4973), + [anon_sym_DASH_EQ] = ACTIONS(4973), + [anon_sym_LT_LT_EQ] = ACTIONS(4973), + [anon_sym_GT_GT_EQ] = ACTIONS(4973), + [anon_sym_AMP_EQ] = ACTIONS(4973), + [anon_sym_CARET_EQ] = ACTIONS(4973), + [anon_sym_PIPE_EQ] = ACTIONS(4973), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_LT_EQ] = ACTIONS(4988), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4224), [sym_comment] = ACTIONS(121), }, - [958] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [961] = { + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(5013), + [anon_sym_STAR_EQ] = ACTIONS(5017), + [anon_sym_SLASH_EQ] = ACTIONS(5017), + [anon_sym_PERCENT_EQ] = ACTIONS(5017), + [anon_sym_PLUS_EQ] = ACTIONS(5017), + [anon_sym_DASH_EQ] = ACTIONS(5017), + [anon_sym_LT_LT_EQ] = ACTIONS(5017), + [anon_sym_GT_GT_EQ] = ACTIONS(5017), + [anon_sym_AMP_EQ] = ACTIONS(5017), + [anon_sym_CARET_EQ] = ACTIONS(5017), + [anon_sym_PIPE_EQ] = ACTIONS(5017), + [anon_sym_AMP] = ACTIONS(5021), + [anon_sym_PIPE_PIPE] = ACTIONS(5025), + [anon_sym_AMP_AMP] = ACTIONS(5025), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_CARET] = ACTIONS(5021), + [anon_sym_EQ_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_LT_LT] = ACTIONS(5041), + [anon_sym_GT_GT] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_SLASH] = ACTIONS(5001), + [anon_sym_PERCENT] = ACTIONS(5001), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_DASH_GT] = ACTIONS(5049), [sym_comment] = ACTIONS(121), }, - [959] = { - [sym__expression] = STATE(960), + [962] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [963] = { + [sym__expression] = STATE(964), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -43829,69 +44437,70 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [960] = { - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3871), - [anon_sym_RBRACK] = ACTIONS(521), - [anon_sym_EQ] = ACTIONS(3874), - [anon_sym_COLON] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_STAR_EQ] = ACTIONS(3880), - [anon_sym_SLASH_EQ] = ACTIONS(3880), - [anon_sym_PERCENT_EQ] = ACTIONS(3880), - [anon_sym_PLUS_EQ] = ACTIONS(3880), - [anon_sym_DASH_EQ] = ACTIONS(3880), - [anon_sym_LT_LT_EQ] = ACTIONS(3880), - [anon_sym_GT_GT_EQ] = ACTIONS(3880), - [anon_sym_AMP_EQ] = ACTIONS(3880), - [anon_sym_CARET_EQ] = ACTIONS(3880), - [anon_sym_PIPE_EQ] = ACTIONS(3880), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_CARET] = ACTIONS(3883), - [anon_sym_EQ_EQ] = ACTIONS(3889), - [anon_sym_BANG_EQ] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_GT] = ACTIONS(3892), - [anon_sym_LT_EQ] = ACTIONS(3895), - [anon_sym_GT_EQ] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3898), - [anon_sym_GT_GT] = ACTIONS(3898), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_SLASH] = ACTIONS(3868), - [anon_sym_PERCENT] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3904), - [anon_sym_DASH_GT] = ACTIONS(3904), + [964] = { + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_RBRACK] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3937), + [anon_sym_SLASH_EQ] = ACTIONS(3937), + [anon_sym_PERCENT_EQ] = ACTIONS(3937), + [anon_sym_PLUS_EQ] = ACTIONS(3937), + [anon_sym_DASH_EQ] = ACTIONS(3937), + [anon_sym_LT_LT_EQ] = ACTIONS(3937), + [anon_sym_GT_GT_EQ] = ACTIONS(3937), + [anon_sym_AMP_EQ] = ACTIONS(3937), + [anon_sym_CARET_EQ] = ACTIONS(3937), + [anon_sym_PIPE_EQ] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3946), + [anon_sym_BANG_EQ] = ACTIONS(3946), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_LT_LT] = ACTIONS(3955), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_DASH_DASH] = ACTIONS(3958), + [anon_sym_PLUS_PLUS] = ACTIONS(3958), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), [sym_comment] = ACTIONS(121), }, - [961] = { - [sym__expression] = STATE(962), + [965] = { + [sym__expression] = STATE(966), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -43908,345 +44517,347 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_sizeof] = ACTIONS(1413), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [962] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [966] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [963] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(607), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), - [sym_conditional_expression] = STATE(53), - [sym_assignment_expression] = STATE(53), - [sym_pointer_expression] = STATE(53), - [sym_logical_expression] = STATE(53), - [sym_bitwise_expression] = STATE(53), - [sym_equality_expression] = STATE(53), - [sym_relational_expression] = STATE(53), - [sym_shift_expression] = STATE(53), - [sym_math_expression] = STATE(53), - [sym_cast_expression] = STATE(53), - [sym_sizeof_expression] = STATE(53), - [sym_subscript_expression] = STATE(53), - [sym_call_expression] = STATE(53), - [sym_field_expression] = STATE(53), - [sym_compound_literal_expression] = STATE(53), - [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_typedef] = ACTIONS(1431), - [anon_sym_auto] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_restrict] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(1431), - [sym_function_specifier] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1945), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_do] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_goto] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(5006), - [anon_sym_BANG] = ACTIONS(5009), - [anon_sym_TILDE] = ACTIONS(3737), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_PLUS_PLUS] = ACTIONS(5015), - [anon_sym_sizeof] = ACTIONS(3750), - [sym_number_literal] = ACTIONS(2011), - [sym_char_literal] = ACTIONS(2011), - [sym_string_literal] = ACTIONS(2011), - [sym_identifier] = ACTIONS(3753), + [967] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(611), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(53), + [sym_assignment_expression] = STATE(53), + [sym_pointer_expression] = STATE(53), + [sym_logical_expression] = STATE(53), + [sym_bitwise_expression] = STATE(53), + [sym_equality_expression] = STATE(53), + [sym_relational_expression] = STATE(53), + [sym_shift_expression] = STATE(53), + [sym_math_expression] = STATE(53), + [sym_cast_expression] = STATE(53), + [sym_sizeof_expression] = STATE(53), + [sym_subscript_expression] = STATE(53), + [sym_call_expression] = STATE(53), + [sym_field_expression] = STATE(53), + [sym_compound_literal_expression] = STATE(53), + [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_auto] = ACTIONS(1449), + [anon_sym_register] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_restrict] = ACTIONS(1449), + [anon_sym_volatile] = ACTIONS(1449), + [sym_function_specifier] = ACTIONS(1449), + [anon_sym_unsigned] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_case] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(5063), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_sizeof] = ACTIONS(3803), + [sym_number_literal] = ACTIONS(2029), + [sym_char_literal] = ACTIONS(2029), + [sym_string_literal] = ACTIONS(2032), + [sym_identifier] = ACTIONS(3806), [sym_comment] = ACTIONS(121), }, - [964] = { - [anon_sym_LPAREN] = ACTIONS(5018), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym_extern] = ACTIONS(5022), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_STAR] = ACTIONS(5018), - [anon_sym_static] = ACTIONS(5022), - [anon_sym_typedef] = ACTIONS(5022), - [anon_sym_auto] = ACTIONS(5022), - [anon_sym_register] = ACTIONS(5022), - [anon_sym_const] = ACTIONS(5022), - [anon_sym_restrict] = ACTIONS(5022), - [anon_sym_volatile] = ACTIONS(5022), - [sym_function_specifier] = ACTIONS(5022), - [anon_sym_unsigned] = ACTIONS(5022), - [anon_sym_long] = ACTIONS(5022), - [anon_sym_short] = ACTIONS(5022), - [anon_sym_enum] = ACTIONS(5022), - [anon_sym_struct] = ACTIONS(5022), - [anon_sym_union] = ACTIONS(5022), - [anon_sym_if] = ACTIONS(5022), - [anon_sym_else] = ACTIONS(5022), - [anon_sym_switch] = ACTIONS(5022), - [anon_sym_case] = ACTIONS(5022), - [anon_sym_default] = ACTIONS(5022), - [anon_sym_while] = ACTIONS(5022), - [anon_sym_do] = ACTIONS(5022), - [anon_sym_for] = ACTIONS(5022), - [anon_sym_return] = ACTIONS(5022), - [anon_sym_break] = ACTIONS(5022), - [anon_sym_continue] = ACTIONS(5022), - [anon_sym_goto] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5018), - [anon_sym_BANG] = ACTIONS(5018), - [anon_sym_TILDE] = ACTIONS(5018), - [anon_sym_PLUS] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5022), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_sizeof] = ACTIONS(5022), - [sym_number_literal] = ACTIONS(5022), - [sym_char_literal] = ACTIONS(5022), - [sym_string_literal] = ACTIONS(5022), - [sym_identifier] = ACTIONS(5026), + [968] = { + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_extern] = ACTIONS(5079), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_STAR] = ACTIONS(5075), + [anon_sym_static] = ACTIONS(5079), + [anon_sym_typedef] = ACTIONS(5079), + [anon_sym_auto] = ACTIONS(5079), + [anon_sym_register] = ACTIONS(5079), + [anon_sym_const] = ACTIONS(5079), + [anon_sym_restrict] = ACTIONS(5079), + [anon_sym_volatile] = ACTIONS(5079), + [sym_function_specifier] = ACTIONS(5079), + [anon_sym_unsigned] = ACTIONS(5079), + [anon_sym_long] = ACTIONS(5079), + [anon_sym_short] = ACTIONS(5079), + [anon_sym_enum] = ACTIONS(5079), + [anon_sym_struct] = ACTIONS(5079), + [anon_sym_union] = ACTIONS(5079), + [anon_sym_if] = ACTIONS(5079), + [anon_sym_else] = ACTIONS(5079), + [anon_sym_switch] = ACTIONS(5079), + [anon_sym_case] = ACTIONS(5079), + [anon_sym_default] = ACTIONS(5079), + [anon_sym_while] = ACTIONS(5079), + [anon_sym_do] = ACTIONS(5079), + [anon_sym_for] = ACTIONS(5079), + [anon_sym_return] = ACTIONS(5079), + [anon_sym_break] = ACTIONS(5079), + [anon_sym_continue] = ACTIONS(5079), + [anon_sym_goto] = ACTIONS(5079), + [anon_sym_AMP] = ACTIONS(5075), + [anon_sym_BANG] = ACTIONS(5075), + [anon_sym_TILDE] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5079), + [anon_sym_DASH] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_sizeof] = ACTIONS(5079), + [sym_number_literal] = ACTIONS(5079), + [sym_char_literal] = ACTIONS(5079), + [sym_string_literal] = ACTIONS(5079), + [sym_identifier] = ACTIONS(5083), [sym_comment] = ACTIONS(121), }, - [965] = { - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_COMMA] = ACTIONS(3862), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3871), - [anon_sym_RBRACK] = ACTIONS(521), - [anon_sym_EQ] = ACTIONS(3874), - [anon_sym_COLON] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_STAR_EQ] = ACTIONS(3880), - [anon_sym_SLASH_EQ] = ACTIONS(3880), - [anon_sym_PERCENT_EQ] = ACTIONS(3880), - [anon_sym_PLUS_EQ] = ACTIONS(3880), - [anon_sym_DASH_EQ] = ACTIONS(3880), - [anon_sym_LT_LT_EQ] = ACTIONS(3880), - [anon_sym_GT_GT_EQ] = ACTIONS(3880), - [anon_sym_AMP_EQ] = ACTIONS(3880), - [anon_sym_CARET_EQ] = ACTIONS(3880), - [anon_sym_PIPE_EQ] = ACTIONS(3880), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_CARET] = ACTIONS(3883), - [anon_sym_EQ_EQ] = ACTIONS(3889), - [anon_sym_BANG_EQ] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_GT] = ACTIONS(3892), - [anon_sym_LT_EQ] = ACTIONS(3895), - [anon_sym_GT_EQ] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3898), - [anon_sym_GT_GT] = ACTIONS(3898), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_SLASH] = ACTIONS(3868), - [anon_sym_PERCENT] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3904), - [anon_sym_DASH_GT] = ACTIONS(3904), + [969] = { + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_COMMA] = ACTIONS(3919), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_RBRACK] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3937), + [anon_sym_SLASH_EQ] = ACTIONS(3937), + [anon_sym_PERCENT_EQ] = ACTIONS(3937), + [anon_sym_PLUS_EQ] = ACTIONS(3937), + [anon_sym_DASH_EQ] = ACTIONS(3937), + [anon_sym_LT_LT_EQ] = ACTIONS(3937), + [anon_sym_GT_GT_EQ] = ACTIONS(3937), + [anon_sym_AMP_EQ] = ACTIONS(3937), + [anon_sym_CARET_EQ] = ACTIONS(3937), + [anon_sym_PIPE_EQ] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3946), + [anon_sym_BANG_EQ] = ACTIONS(3946), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_LT_LT] = ACTIONS(3955), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_DASH_DASH] = ACTIONS(3958), + [anon_sym_PLUS_PLUS] = ACTIONS(3958), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), [sym_comment] = ACTIONS(121), }, - [966] = { - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_auto] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(5039), - [anon_sym_restrict] = ACTIONS(5039), - [anon_sym_volatile] = ACTIONS(5039), - [sym_function_specifier] = ACTIONS(1253), - [anon_sym_unsigned] = ACTIONS(5039), - [anon_sym_long] = ACTIONS(5039), - [anon_sym_short] = ACTIONS(5039), - [anon_sym_enum] = ACTIONS(5039), - [anon_sym_struct] = ACTIONS(5039), - [anon_sym_union] = ACTIONS(5039), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_goto] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_sizeof] = ACTIONS(1253), - [sym_number_literal] = ACTIONS(1253), - [sym_char_literal] = ACTIONS(1253), - [sym_string_literal] = ACTIONS(1253), - [sym_identifier] = ACTIONS(5045), + [970] = { + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(5096), + [anon_sym_restrict] = ACTIONS(5096), + [anon_sym_volatile] = ACTIONS(5096), + [sym_function_specifier] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(5096), + [anon_sym_long] = ACTIONS(5096), + [anon_sym_short] = ACTIONS(5096), + [anon_sym_enum] = ACTIONS(5096), + [anon_sym_struct] = ACTIONS(5096), + [anon_sym_union] = ACTIONS(5096), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1271), + [sym_char_literal] = ACTIONS(1271), + [sym_string_literal] = ACTIONS(1271), + [sym_identifier] = ACTIONS(5102), [sym_comment] = ACTIONS(121), }, - [967] = { - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(5057), - [anon_sym_RBRACE] = ACTIONS(5060), - [anon_sym_STAR] = ACTIONS(3579), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_RBRACK] = ACTIONS(485), - [anon_sym_EQ] = ACTIONS(3585), - [anon_sym_COLON] = ACTIONS(485), - [anon_sym_QMARK] = ACTIONS(3588), - [anon_sym_STAR_EQ] = ACTIONS(3591), - [anon_sym_SLASH_EQ] = ACTIONS(3591), - [anon_sym_PERCENT_EQ] = ACTIONS(3591), - [anon_sym_PLUS_EQ] = ACTIONS(3591), - [anon_sym_DASH_EQ] = ACTIONS(3591), - [anon_sym_LT_LT_EQ] = ACTIONS(3591), - [anon_sym_GT_GT_EQ] = ACTIONS(3591), - [anon_sym_AMP_EQ] = ACTIONS(3591), - [anon_sym_CARET_EQ] = ACTIONS(3591), - [anon_sym_PIPE_EQ] = ACTIONS(3591), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3597), - [anon_sym_AMP_AMP] = ACTIONS(3597), - [anon_sym_PIPE] = ACTIONS(3594), - [anon_sym_CARET] = ACTIONS(3594), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_GT] = ACTIONS(3603), - [anon_sym_LT_EQ] = ACTIONS(3606), - [anon_sym_GT_EQ] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3609), - [anon_sym_GT_GT] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3579), - [anon_sym_SLASH] = ACTIONS(3579), - [anon_sym_PERCENT] = ACTIONS(3579), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3615), - [anon_sym_DASH_GT] = ACTIONS(3615), + [971] = { + [anon_sym_LPAREN] = ACTIONS(3629), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_RBRACK] = ACTIONS(489), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_COLON] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_STAR_EQ] = ACTIONS(3644), + [anon_sym_SLASH_EQ] = ACTIONS(3644), + [anon_sym_PERCENT_EQ] = ACTIONS(3644), + [anon_sym_PLUS_EQ] = ACTIONS(3644), + [anon_sym_DASH_EQ] = ACTIONS(3644), + [anon_sym_LT_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_AMP_EQ] = ACTIONS(3644), + [anon_sym_CARET_EQ] = ACTIONS(3644), + [anon_sym_PIPE_EQ] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_PIPE] = ACTIONS(3647), + [anon_sym_CARET] = ACTIONS(3647), + [anon_sym_EQ_EQ] = ACTIONS(3653), + [anon_sym_BANG_EQ] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_GT] = ACTIONS(3656), + [anon_sym_LT_EQ] = ACTIONS(3659), + [anon_sym_GT_EQ] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3662), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(3632), + [anon_sym_PERCENT] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), [sym_comment] = ACTIONS(121), }, - [968] = { - [anon_sym_COMMA] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(3327), + [972] = { + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(3380), [sym_comment] = ACTIONS(121), }, - [969] = { - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_COLON] = ACTIONS(735), + [973] = { + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(753), [sym_comment] = ACTIONS(121), }, - [970] = { - [sym_type_qualifier] = STATE(202), - [sym__expression] = STATE(844), + [974] = { + [sym_type_qualifier] = STATE(206), + [sym__expression] = STATE(848), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -44263,9 +44874,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(5073), + [anon_sym_RBRACK] = ACTIONS(5130), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -44279,24 +44891,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [971] = { - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(739), - [anon_sym_COLON] = ACTIONS(739), + [975] = { + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_COMMA] = ACTIONS(5132), + [anon_sym_RPAREN] = ACTIONS(5132), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), [sym_comment] = ACTIONS(121), }, - [972] = { - [sym_type_qualifier] = STATE(195), - [sym__expression] = STATE(976), + [976] = { + [sym_type_qualifier] = STATE(199), + [sym__expression] = STATE(980), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -44313,10 +44925,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [aux_sym_array_declarator_repeat1] = STATE(970), + [sym_concatenated_string] = STATE(53), + [aux_sym_array_declarator_repeat1] = STATE(974), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(2420), + [anon_sym_RBRACK] = ACTIONS(2455), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -44330,64 +44943,64 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [973] = { - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), + [977] = { + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_LBRACE] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(749), [sym_comment] = ACTIONS(121), }, - [974] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [978] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(5140), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [975] = { - [sym_type_qualifier] = STATE(202), - [sym__expression] = STATE(976), + [979] = { + [sym_type_qualifier] = STATE(206), + [sym__expression] = STATE(980), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -44404,10 +45017,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(315), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_RBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_RBRACK] = ACTIONS(2455), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -44421,113 +45035,113 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(329), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [976] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [977] = { - [anon_sym_LPAREN] = ACTIONS(5085), - [anon_sym_COMMA] = ACTIONS(5085), - [anon_sym_RPAREN] = ACTIONS(5085), - [anon_sym_SEMI] = ACTIONS(5090), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_RBRACK] = ACTIONS(555), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5090), - [anon_sym_QMARK] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(557), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(557), + [980] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(555), [anon_sym_PLUS] = ACTIONS(557), [anon_sym_DASH] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(2469), - [anon_sym_DASH_GT] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [978] = { - [sym__declarator] = STATE(260), - [sym__abstract_declarator] = STATE(261), + [981] = { + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(5150), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5147), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(2504), + [anon_sym_DASH_GT] = ACTIONS(559), + [sym_comment] = ACTIONS(121), + }, + [982] = { + [sym__declarator] = STATE(264), + [sym__abstract_declarator] = STATE(265), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [sym_abstract_array_declarator] = STATE(212), + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -44544,13 +45158,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(857), + [sym_type_name] = STATE(861), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_LBRACK] = ACTIONS(643), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(661), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -44560,30 +45175,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(5107), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(5164), [sym_comment] = ACTIONS(121), }, - [979] = { - [sym__declarator] = STATE(932), - [sym__abstract_declarator] = STATE(258), + [983] = { + [sym__declarator] = STATE(936), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym__expression] = STATE(856), + [sym_abstract_array_declarator] = STATE(212), + [sym__expression] = STATE(860), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -44600,133 +45215,134 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2412), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(2414), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(2449), [sym_comment] = ACTIONS(121), }, - [980] = { - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_COMMA] = ACTIONS(5109), - [anon_sym_RPAREN] = ACTIONS(5109), - [anon_sym_SEMI] = ACTIONS(5109), + [984] = { + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_SEMI] = ACTIONS(5166), [anon_sym_LBRACE] = ACTIONS(275), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(5112), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5166), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), - }, - [981] = { - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_RBRACE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5130), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5134), - [anon_sym_STAR_EQ] = ACTIONS(5138), - [anon_sym_SLASH_EQ] = ACTIONS(5138), - [anon_sym_PERCENT_EQ] = ACTIONS(5138), - [anon_sym_PLUS_EQ] = ACTIONS(5138), - [anon_sym_DASH_EQ] = ACTIONS(5138), - [anon_sym_LT_LT_EQ] = ACTIONS(5138), - [anon_sym_GT_GT_EQ] = ACTIONS(5138), - [anon_sym_AMP_EQ] = ACTIONS(5138), - [anon_sym_CARET_EQ] = ACTIONS(5138), - [anon_sym_PIPE_EQ] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5142), - [anon_sym_PIPE_PIPE] = ACTIONS(5146), - [anon_sym_AMP_AMP] = ACTIONS(5146), - [anon_sym_PIPE] = ACTIONS(5142), - [anon_sym_CARET] = ACTIONS(5142), - [anon_sym_EQ_EQ] = ACTIONS(5150), - [anon_sym_BANG_EQ] = ACTIONS(5150), - [anon_sym_LT] = ACTIONS(5154), - [anon_sym_GT] = ACTIONS(5154), - [anon_sym_LT_EQ] = ACTIONS(5158), - [anon_sym_GT_EQ] = ACTIONS(5158), - [anon_sym_LT_LT] = ACTIONS(5162), - [anon_sym_GT_GT] = ACTIONS(5162), - [anon_sym_PLUS] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5122), - [anon_sym_PERCENT] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5166), - [anon_sym_PLUS_PLUS] = ACTIONS(5166), - [anon_sym_DOT] = ACTIONS(5170), - [anon_sym_DASH_GT] = ACTIONS(5170), + }, + [985] = { + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_COMMA] = ACTIONS(5176), + [anon_sym_RPAREN] = ACTIONS(5176), + [anon_sym_SEMI] = ACTIONS(5176), + [anon_sym_RBRACE] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5176), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_QMARK] = ACTIONS(5191), + [anon_sym_STAR_EQ] = ACTIONS(5195), + [anon_sym_SLASH_EQ] = ACTIONS(5195), + [anon_sym_PERCENT_EQ] = ACTIONS(5195), + [anon_sym_PLUS_EQ] = ACTIONS(5195), + [anon_sym_DASH_EQ] = ACTIONS(5195), + [anon_sym_LT_LT_EQ] = ACTIONS(5195), + [anon_sym_GT_GT_EQ] = ACTIONS(5195), + [anon_sym_AMP_EQ] = ACTIONS(5195), + [anon_sym_CARET_EQ] = ACTIONS(5195), + [anon_sym_PIPE_EQ] = ACTIONS(5195), + [anon_sym_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5203), + [anon_sym_AMP_AMP] = ACTIONS(5203), + [anon_sym_PIPE] = ACTIONS(5199), + [anon_sym_CARET] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5211), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5215), + [anon_sym_LT_LT] = ACTIONS(5219), + [anon_sym_GT_GT] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_DASH_DASH] = ACTIONS(5223), + [anon_sym_PLUS_PLUS] = ACTIONS(5223), + [anon_sym_DOT] = ACTIONS(5227), + [anon_sym_DASH_GT] = ACTIONS(5227), [sym_comment] = ACTIONS(121), }, - [982] = { - [sym__declarator] = STATE(260), - [sym__abstract_declarator] = STATE(261), + [986] = { + [sym__declarator] = STATE(264), + [sym__abstract_declarator] = STATE(265), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [sym_abstract_array_declarator] = STATE(212), + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -44743,13 +45359,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(438), + [sym_type_name] = STATE(442), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_LBRACK] = ACTIONS(643), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(661), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -44759,30 +45376,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(5107), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(5164), [sym_comment] = ACTIONS(121), }, - [983] = { - [sym__declarator] = STATE(257), - [sym__abstract_declarator] = STATE(258), + [987] = { + [sym__declarator] = STATE(261), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym__expression] = STATE(393), + [sym_abstract_array_declarator] = STATE(212), + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -44799,116 +45416,117 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5174), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5231), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(5177), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(5234), [sym_comment] = ACTIONS(121), }, - [984] = { - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(5184), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [988] = { + [anon_sym_LPAREN] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(5241), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, - [985] = { - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(5109), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [989] = { + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, - [986] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [990] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -44925,12 +45543,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(1031), + [sym_type_name] = STATE(1035), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -44940,46 +45559,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [987] = { - [sym_declaration] = STATE(476), - [sym__declaration_specifiers] = STATE(477), - [sym_compound_statement] = STATE(478), + [991] = { + [sym_declaration] = STATE(480), + [sym__declaration_specifiers] = STATE(481), + [sym_compound_statement] = STATE(482), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(479), + [sym__type_specifier] = STATE(483), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__statement] = STATE(476), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(998), - [sym_comma_expression] = STATE(481), + [sym__statement] = STATE(480), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(1002), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -44996,22 +45615,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(341), - [sym__initializer_list_contents] = STATE(342), - [sym_designator] = STATE(343), - [sym__empty_declaration] = STATE(476), + [sym_initializer_list] = STATE(345), + [sym__initializer_list_contents] = STATE(346), + [sym_designator] = STATE(347), + [sym_concatenated_string] = STATE(53), + [sym__empty_declaration] = STATE(480), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), - [aux_sym_compound_statement_repeat1] = STATE(482), + [aux_sym_compound_statement_repeat1] = STATE(486), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym__initializer_list_contents_repeat1] = STATE(344), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(1141), + [aux_sym__initializer_list_contents_repeat1] = STATE(348), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_extern] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(5188), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -45026,122 +45646,122 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(385), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), + [anon_sym_DOT] = ACTIONS(387), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1185), [sym_comment] = ACTIONS(121), }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(5190), - [anon_sym_POUNDinclude] = ACTIONS(5193), - [anon_sym_POUNDdefine] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5196), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_POUNDifdef] = ACTIONS(5193), - [anon_sym_POUNDifndef] = ACTIONS(5193), - [anon_sym_POUNDendif] = ACTIONS(5193), - [anon_sym_POUNDelse] = ACTIONS(5193), - [sym_preproc_directive] = ACTIONS(5209), - [anon_sym_SEMI] = ACTIONS(5196), - [anon_sym_extern] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_static] = ACTIONS(5193), - [anon_sym_RBRACK] = ACTIONS(919), - [anon_sym_EQ] = ACTIONS(921), - [anon_sym_typedef] = ACTIONS(5193), - [anon_sym_auto] = ACTIONS(5193), - [anon_sym_register] = ACTIONS(5193), - [anon_sym_const] = ACTIONS(5193), - [anon_sym_restrict] = ACTIONS(5193), - [anon_sym_volatile] = ACTIONS(5193), - [sym_function_specifier] = ACTIONS(5193), - [anon_sym_unsigned] = ACTIONS(5193), - [anon_sym_long] = ACTIONS(5193), - [anon_sym_short] = ACTIONS(5193), - [anon_sym_enum] = ACTIONS(5193), - [anon_sym_struct] = ACTIONS(5193), - [anon_sym_union] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5203), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(919), - [anon_sym_STAR_EQ] = ACTIONS(919), - [anon_sym_SLASH_EQ] = ACTIONS(919), - [anon_sym_PERCENT_EQ] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(919), - [anon_sym_DASH_EQ] = ACTIONS(919), - [anon_sym_LT_LT_EQ] = ACTIONS(919), - [anon_sym_GT_GT_EQ] = ACTIONS(919), - [anon_sym_AMP_EQ] = ACTIONS(919), - [anon_sym_CARET_EQ] = ACTIONS(919), - [anon_sym_PIPE_EQ] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(5223), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(921), - [anon_sym_CARET] = ACTIONS(921), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_LT_LT] = ACTIONS(921), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_PERCENT] = ACTIONS(921), - [anon_sym_DASH_DASH] = ACTIONS(5226), - [anon_sym_PLUS_PLUS] = ACTIONS(5226), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DASH_GT] = ACTIONS(919), - [sym_number_literal] = ACTIONS(1183), - [sym_char_literal] = ACTIONS(1183), - [sym_string_literal] = ACTIONS(1183), - [sym_identifier] = ACTIONS(5229), + [992] = { + [ts_builtin_sym_end] = ACTIONS(5247), + [anon_sym_POUNDinclude] = ACTIONS(5250), + [anon_sym_POUNDdefine] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5260), + [anon_sym_RPAREN] = ACTIONS(5260), + [anon_sym_POUNDifdef] = ACTIONS(5250), + [anon_sym_POUNDifndef] = ACTIONS(5250), + [anon_sym_POUNDendif] = ACTIONS(5250), + [anon_sym_POUNDelse] = ACTIONS(5250), + [sym_preproc_directive] = ACTIONS(5266), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_extern] = ACTIONS(5250), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_LBRACK] = ACTIONS(5260), + [anon_sym_static] = ACTIONS(5250), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_typedef] = ACTIONS(5250), + [anon_sym_auto] = ACTIONS(5250), + [anon_sym_register] = ACTIONS(5250), + [anon_sym_const] = ACTIONS(5250), + [anon_sym_restrict] = ACTIONS(5250), + [anon_sym_volatile] = ACTIONS(5250), + [sym_function_specifier] = ACTIONS(5250), + [anon_sym_unsigned] = ACTIONS(5250), + [anon_sym_long] = ACTIONS(5250), + [anon_sym_short] = ACTIONS(5250), + [anon_sym_enum] = ACTIONS(5250), + [anon_sym_struct] = ACTIONS(5250), + [anon_sym_union] = ACTIONS(5250), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(5280), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(5283), + [anon_sym_PLUS_PLUS] = ACTIONS(5283), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), + [sym_number_literal] = ACTIONS(1201), + [sym_char_literal] = ACTIONS(1201), + [sym_string_literal] = ACTIONS(1201), + [sym_identifier] = ACTIONS(5286), [sym_comment] = ACTIONS(121), }, - [989] = { - [sym__expression] = STATE(1029), + [993] = { + [sym__expression] = STATE(1033), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45158,24 +45778,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [990] = { - [sym__expression] = STATE(1028), + [994] = { + [sym__expression] = STATE(1032), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45192,24 +45813,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [991] = { - [sym__expression] = STATE(1027), + [995] = { + [sym__expression] = STATE(1031), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45226,24 +45848,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [992] = { - [sym__expression] = STATE(1026), + [996] = { + [sym__expression] = STATE(1030), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45260,24 +45883,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [993] = { - [sym__expression] = STATE(1022), + [997] = { + [sym__expression] = STATE(1026), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45294,193 +45918,194 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5236), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [994] = { - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(5238), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(5241), - [anon_sym_COLON] = ACTIONS(5244), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [998] = { + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_COMMA] = ACTIONS(5295), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_RBRACE] = ACTIONS(5295), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(5298), + [anon_sym_COLON] = ACTIONS(5301), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_identifier] = ACTIONS(198), [sym_comment] = ACTIONS(121), }, - [995] = { + [999] = { [anon_sym_POUNDinclude] = ACTIONS(210), [anon_sym_POUNDdefine] = ACTIONS(210), - [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1239), [anon_sym_POUNDifdef] = ACTIONS(210), [anon_sym_POUNDifndef] = ACTIONS(210), [sym_preproc_directive] = ACTIONS(212), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(5250), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(5247), - [anon_sym_typedef] = ACTIONS(5247), - [anon_sym_auto] = ACTIONS(5247), - [anon_sym_register] = ACTIONS(5247), - [anon_sym_const] = ACTIONS(5247), - [anon_sym_restrict] = ACTIONS(5247), - [anon_sym_volatile] = ACTIONS(5247), - [sym_function_specifier] = ACTIONS(5247), - [anon_sym_unsigned] = ACTIONS(5247), - [anon_sym_long] = ACTIONS(5247), - [anon_sym_short] = ACTIONS(5247), - [anon_sym_enum] = ACTIONS(5247), - [anon_sym_struct] = ACTIONS(5247), - [anon_sym_union] = ACTIONS(5247), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1223), - [sym_char_literal] = ACTIONS(1223), - [sym_string_literal] = ACTIONS(1223), - [sym_identifier] = ACTIONS(5253), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(5304), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(5307), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(5304), + [anon_sym_typedef] = ACTIONS(5304), + [anon_sym_auto] = ACTIONS(5304), + [anon_sym_register] = ACTIONS(5304), + [anon_sym_const] = ACTIONS(5304), + [anon_sym_restrict] = ACTIONS(5304), + [anon_sym_volatile] = ACTIONS(5304), + [sym_function_specifier] = ACTIONS(5304), + [anon_sym_unsigned] = ACTIONS(5304), + [anon_sym_long] = ACTIONS(5304), + [anon_sym_short] = ACTIONS(5304), + [anon_sym_enum] = ACTIONS(5304), + [anon_sym_struct] = ACTIONS(5304), + [anon_sym_union] = ACTIONS(5304), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_goto] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_sizeof] = ACTIONS(1241), + [sym_number_literal] = ACTIONS(1241), + [sym_char_literal] = ACTIONS(1241), + [sym_string_literal] = ACTIONS(1241), + [sym_identifier] = ACTIONS(5310), [sym_comment] = ACTIONS(121), }, - [996] = { + [1000] = { [anon_sym_extern] = ACTIONS(171), [anon_sym_static] = ACTIONS(171), [anon_sym_typedef] = ACTIONS(171), [anon_sym_auto] = ACTIONS(171), [anon_sym_register] = ACTIONS(171), - [anon_sym_const] = ACTIONS(5256), - [anon_sym_restrict] = ACTIONS(5256), - [anon_sym_volatile] = ACTIONS(5256), + [anon_sym_const] = ACTIONS(5313), + [anon_sym_restrict] = ACTIONS(5313), + [anon_sym_volatile] = ACTIONS(5313), [sym_function_specifier] = ACTIONS(171), - [anon_sym_unsigned] = ACTIONS(5256), - [anon_sym_long] = ACTIONS(5256), - [anon_sym_short] = ACTIONS(5256), - [anon_sym_enum] = ACTIONS(5256), - [anon_sym_struct] = ACTIONS(5256), - [anon_sym_union] = ACTIONS(5256), - [sym_identifier] = ACTIONS(5259), + [anon_sym_unsigned] = ACTIONS(5313), + [anon_sym_long] = ACTIONS(5313), + [anon_sym_short] = ACTIONS(5313), + [anon_sym_enum] = ACTIONS(5313), + [anon_sym_struct] = ACTIONS(5313), + [anon_sym_union] = ACTIONS(5313), + [sym_identifier] = ACTIONS(5316), [sym_comment] = ACTIONS(121), }, - [997] = { - [sym__declarator] = STATE(1019), + [1001] = { + [sym__declarator] = STATE(1023), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), [sym_init_declarator] = STATE(34), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_SEMI] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5264), - [anon_sym_COLON] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(5319), + [anon_sym_STAR] = ACTIONS(5321), + [anon_sym_COLON] = ACTIONS(811), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [998] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(5266), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(5271), - [anon_sym_QMARK] = ACTIONS(5273), - [anon_sym_STAR_EQ] = ACTIONS(5275), - [anon_sym_SLASH_EQ] = ACTIONS(5275), - [anon_sym_PERCENT_EQ] = ACTIONS(5275), - [anon_sym_PLUS_EQ] = ACTIONS(5275), - [anon_sym_DASH_EQ] = ACTIONS(5275), - [anon_sym_LT_LT_EQ] = ACTIONS(5275), - [anon_sym_GT_GT_EQ] = ACTIONS(5275), - [anon_sym_AMP_EQ] = ACTIONS(5275), - [anon_sym_CARET_EQ] = ACTIONS(5275), - [anon_sym_PIPE_EQ] = ACTIONS(5275), - [anon_sym_AMP] = ACTIONS(5277), - [anon_sym_PIPE_PIPE] = ACTIONS(5279), - [anon_sym_AMP_AMP] = ACTIONS(5279), - [anon_sym_PIPE] = ACTIONS(5277), - [anon_sym_CARET] = ACTIONS(5277), - [anon_sym_EQ_EQ] = ACTIONS(5281), - [anon_sym_BANG_EQ] = ACTIONS(5281), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_LT_EQ] = ACTIONS(5285), - [anon_sym_GT_EQ] = ACTIONS(5285), - [anon_sym_LT_LT] = ACTIONS(5287), - [anon_sym_GT_GT] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_PERCENT] = ACTIONS(5269), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [1002] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(5323), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(5328), + [anon_sym_QMARK] = ACTIONS(5330), + [anon_sym_STAR_EQ] = ACTIONS(5332), + [anon_sym_SLASH_EQ] = ACTIONS(5332), + [anon_sym_PERCENT_EQ] = ACTIONS(5332), + [anon_sym_PLUS_EQ] = ACTIONS(5332), + [anon_sym_DASH_EQ] = ACTIONS(5332), + [anon_sym_LT_LT_EQ] = ACTIONS(5332), + [anon_sym_GT_GT_EQ] = ACTIONS(5332), + [anon_sym_AMP_EQ] = ACTIONS(5332), + [anon_sym_CARET_EQ] = ACTIONS(5332), + [anon_sym_PIPE_EQ] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5334), + [anon_sym_PIPE_PIPE] = ACTIONS(5336), + [anon_sym_AMP_AMP] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5334), + [anon_sym_CARET] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5338), + [anon_sym_BANG_EQ] = ACTIONS(5338), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_LT_EQ] = ACTIONS(5342), + [anon_sym_GT_EQ] = ACTIONS(5342), + [anon_sym_LT_LT] = ACTIONS(5344), + [anon_sym_GT_GT] = ACTIONS(5344), + [anon_sym_PLUS] = ACTIONS(5326), + [anon_sym_DASH] = ACTIONS(5326), + [anon_sym_SLASH] = ACTIONS(5326), + [anon_sym_PERCENT] = ACTIONS(5326), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [999] = { - [sym__expression] = STATE(1007), + [1003] = { + [sym__expression] = STATE(1011), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45497,24 +46122,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1000] = { - [sym__expression] = STATE(1013), + [1004] = { + [sym__expression] = STATE(1017), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45531,24 +46157,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1001] = { - [sym__expression] = STATE(1014), + [1005] = { + [sym__expression] = STATE(1018), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45565,24 +46192,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1002] = { - [sym__expression] = STATE(1011), + [1006] = { + [sym__expression] = STATE(1015), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45599,24 +46227,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1003] = { - [sym__expression] = STATE(1012), + [1007] = { + [sym__expression] = STATE(1016), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45633,24 +46262,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1004] = { - [sym__expression] = STATE(1010), + [1008] = { + [sym__expression] = STATE(1014), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45667,24 +46297,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1005] = { - [sym__expression] = STATE(1009), + [1009] = { + [sym__expression] = STATE(1013), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45701,24 +46332,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1006] = { - [sym__expression] = STATE(1008), + [1010] = { + [sym__expression] = STATE(1012), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -45735,358 +46367,359 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [1007] = { - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_EQ] = ACTIONS(5292), - [anon_sym_QMARK] = ACTIONS(5295), - [anon_sym_STAR_EQ] = ACTIONS(5298), - [anon_sym_SLASH_EQ] = ACTIONS(5298), - [anon_sym_PERCENT_EQ] = ACTIONS(5298), - [anon_sym_PLUS_EQ] = ACTIONS(5298), - [anon_sym_DASH_EQ] = ACTIONS(5298), - [anon_sym_LT_LT_EQ] = ACTIONS(5298), - [anon_sym_GT_GT_EQ] = ACTIONS(5298), - [anon_sym_AMP_EQ] = ACTIONS(5298), - [anon_sym_CARET_EQ] = ACTIONS(5298), - [anon_sym_PIPE_EQ] = ACTIONS(5298), - [anon_sym_AMP] = ACTIONS(5301), - [anon_sym_PIPE_PIPE] = ACTIONS(5304), - [anon_sym_AMP_AMP] = ACTIONS(5304), - [anon_sym_PIPE] = ACTIONS(5301), - [anon_sym_CARET] = ACTIONS(5301), - [anon_sym_EQ_EQ] = ACTIONS(5307), - [anon_sym_BANG_EQ] = ACTIONS(5307), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_LT_EQ] = ACTIONS(5313), - [anon_sym_GT_EQ] = ACTIONS(5313), - [anon_sym_LT_LT] = ACTIONS(5316), - [anon_sym_GT_GT] = ACTIONS(5316), - [anon_sym_PLUS] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_SLASH] = ACTIONS(5289), - [anon_sym_PERCENT] = ACTIONS(5289), - [anon_sym_DASH_DASH] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3528), - [anon_sym_DOT] = ACTIONS(3531), - [anon_sym_DASH_GT] = ACTIONS(3531), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1008] = { - [anon_sym_LPAREN] = ACTIONS(3972), + [1011] = { + [anon_sym_LPAREN] = ACTIONS(3545), [anon_sym_COMMA] = ACTIONS(465), [anon_sym_SEMI] = ACTIONS(465), [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_EQ] = ACTIONS(5322), - [anon_sym_QMARK] = ACTIONS(5325), - [anon_sym_STAR_EQ] = ACTIONS(5328), - [anon_sym_SLASH_EQ] = ACTIONS(5328), - [anon_sym_PERCENT_EQ] = ACTIONS(5328), - [anon_sym_PLUS_EQ] = ACTIONS(5328), - [anon_sym_DASH_EQ] = ACTIONS(5328), - [anon_sym_LT_LT_EQ] = ACTIONS(5328), - [anon_sym_GT_GT_EQ] = ACTIONS(5328), - [anon_sym_AMP_EQ] = ACTIONS(5328), - [anon_sym_CARET_EQ] = ACTIONS(5328), - [anon_sym_PIPE_EQ] = ACTIONS(5328), - [anon_sym_AMP] = ACTIONS(5331), - [anon_sym_PIPE_PIPE] = ACTIONS(5334), - [anon_sym_AMP_AMP] = ACTIONS(5334), - [anon_sym_PIPE] = ACTIONS(5331), - [anon_sym_CARET] = ACTIONS(5331), - [anon_sym_EQ_EQ] = ACTIONS(5337), - [anon_sym_BANG_EQ] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5340), - [anon_sym_GT] = ACTIONS(5340), - [anon_sym_LT_EQ] = ACTIONS(5343), - [anon_sym_GT_EQ] = ACTIONS(5343), - [anon_sym_LT_LT] = ACTIONS(5346), - [anon_sym_GT_GT] = ACTIONS(5346), - [anon_sym_PLUS] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(5319), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_PERCENT] = ACTIONS(5319), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(4011), + [anon_sym_STAR] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_EQ] = ACTIONS(5349), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_STAR_EQ] = ACTIONS(5355), + [anon_sym_SLASH_EQ] = ACTIONS(5355), + [anon_sym_PERCENT_EQ] = ACTIONS(5355), + [anon_sym_PLUS_EQ] = ACTIONS(5355), + [anon_sym_DASH_EQ] = ACTIONS(5355), + [anon_sym_LT_LT_EQ] = ACTIONS(5355), + [anon_sym_GT_GT_EQ] = ACTIONS(5355), + [anon_sym_AMP_EQ] = ACTIONS(5355), + [anon_sym_CARET_EQ] = ACTIONS(5355), + [anon_sym_PIPE_EQ] = ACTIONS(5355), + [anon_sym_AMP] = ACTIONS(5358), + [anon_sym_PIPE_PIPE] = ACTIONS(5361), + [anon_sym_AMP_AMP] = ACTIONS(5361), + [anon_sym_PIPE] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5364), + [anon_sym_BANG_EQ] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5367), + [anon_sym_GT] = ACTIONS(5367), + [anon_sym_LT_EQ] = ACTIONS(5370), + [anon_sym_GT_EQ] = ACTIONS(5370), + [anon_sym_LT_LT] = ACTIONS(5373), + [anon_sym_GT_GT] = ACTIONS(5373), + [anon_sym_PLUS] = ACTIONS(5346), + [anon_sym_DASH] = ACTIONS(5346), + [anon_sym_SLASH] = ACTIONS(5346), + [anon_sym_PERCENT] = ACTIONS(5346), + [anon_sym_DASH_DASH] = ACTIONS(3581), + [anon_sym_PLUS_PLUS] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3584), + [anon_sym_DASH_GT] = ACTIONS(3584), [sym_comment] = ACTIONS(121), }, - [1009] = { - [anon_sym_LPAREN] = ACTIONS(4014), + [1012] = { + [anon_sym_LPAREN] = ACTIONS(4029), [anon_sym_COMMA] = ACTIONS(469), [anon_sym_SEMI] = ACTIONS(469), [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_EQ] = ACTIONS(5352), - [anon_sym_QMARK] = ACTIONS(5355), - [anon_sym_STAR_EQ] = ACTIONS(5358), - [anon_sym_SLASH_EQ] = ACTIONS(5358), - [anon_sym_PERCENT_EQ] = ACTIONS(5358), - [anon_sym_PLUS_EQ] = ACTIONS(5358), - [anon_sym_DASH_EQ] = ACTIONS(5358), - [anon_sym_LT_LT_EQ] = ACTIONS(5358), - [anon_sym_GT_GT_EQ] = ACTIONS(5358), - [anon_sym_AMP_EQ] = ACTIONS(5358), - [anon_sym_CARET_EQ] = ACTIONS(5358), - [anon_sym_PIPE_EQ] = ACTIONS(5358), - [anon_sym_AMP] = ACTIONS(5361), - [anon_sym_PIPE_PIPE] = ACTIONS(5364), - [anon_sym_AMP_AMP] = ACTIONS(5364), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym_EQ_EQ] = ACTIONS(5367), - [anon_sym_BANG_EQ] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(5370), - [anon_sym_GT] = ACTIONS(5370), - [anon_sym_LT_EQ] = ACTIONS(5373), - [anon_sym_GT_EQ] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(5376), - [anon_sym_GT_GT] = ACTIONS(5376), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5349), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_DOT] = ACTIONS(4053), - [anon_sym_DASH_GT] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(5379), + [anon_sym_QMARK] = ACTIONS(5382), + [anon_sym_STAR_EQ] = ACTIONS(5385), + [anon_sym_SLASH_EQ] = ACTIONS(5385), + [anon_sym_PERCENT_EQ] = ACTIONS(5385), + [anon_sym_PLUS_EQ] = ACTIONS(5385), + [anon_sym_DASH_EQ] = ACTIONS(5385), + [anon_sym_LT_LT_EQ] = ACTIONS(5385), + [anon_sym_GT_GT_EQ] = ACTIONS(5385), + [anon_sym_AMP_EQ] = ACTIONS(5385), + [anon_sym_CARET_EQ] = ACTIONS(5385), + [anon_sym_PIPE_EQ] = ACTIONS(5385), + [anon_sym_AMP] = ACTIONS(5388), + [anon_sym_PIPE_PIPE] = ACTIONS(5391), + [anon_sym_AMP_AMP] = ACTIONS(5391), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_EQ_EQ] = ACTIONS(5394), + [anon_sym_BANG_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5397), + [anon_sym_GT] = ACTIONS(5397), + [anon_sym_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_LT] = ACTIONS(5403), + [anon_sym_GT_GT] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_PERCENT] = ACTIONS(5376), + [anon_sym_DASH_DASH] = ACTIONS(4065), + [anon_sym_PLUS_PLUS] = ACTIONS(4065), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_DASH_GT] = ACTIONS(4068), [sym_comment] = ACTIONS(121), }, - [1010] = { - [anon_sym_LPAREN] = ACTIONS(4056), + [1013] = { + [anon_sym_LPAREN] = ACTIONS(4071), [anon_sym_COMMA] = ACTIONS(473), [anon_sym_SEMI] = ACTIONS(473), [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_EQ] = ACTIONS(5382), - [anon_sym_QMARK] = ACTIONS(5385), - [anon_sym_STAR_EQ] = ACTIONS(5388), - [anon_sym_SLASH_EQ] = ACTIONS(5388), - [anon_sym_PERCENT_EQ] = ACTIONS(5388), - [anon_sym_PLUS_EQ] = ACTIONS(5388), - [anon_sym_DASH_EQ] = ACTIONS(5388), - [anon_sym_LT_LT_EQ] = ACTIONS(5388), - [anon_sym_GT_GT_EQ] = ACTIONS(5388), - [anon_sym_AMP_EQ] = ACTIONS(5388), - [anon_sym_CARET_EQ] = ACTIONS(5388), - [anon_sym_PIPE_EQ] = ACTIONS(5388), - [anon_sym_AMP] = ACTIONS(5391), - [anon_sym_PIPE_PIPE] = ACTIONS(5394), - [anon_sym_AMP_AMP] = ACTIONS(5394), - [anon_sym_PIPE] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym_EQ_EQ] = ACTIONS(5397), - [anon_sym_BANG_EQ] = ACTIONS(5397), - [anon_sym_LT] = ACTIONS(5400), - [anon_sym_GT] = ACTIONS(5400), - [anon_sym_LT_EQ] = ACTIONS(5403), - [anon_sym_GT_EQ] = ACTIONS(5403), - [anon_sym_LT_LT] = ACTIONS(5406), - [anon_sym_GT_GT] = ACTIONS(5406), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_PERCENT] = ACTIONS(5379), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4095), - [anon_sym_DASH_GT] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(5406), + [anon_sym_LBRACK] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(5409), + [anon_sym_QMARK] = ACTIONS(5412), + [anon_sym_STAR_EQ] = ACTIONS(5415), + [anon_sym_SLASH_EQ] = ACTIONS(5415), + [anon_sym_PERCENT_EQ] = ACTIONS(5415), + [anon_sym_PLUS_EQ] = ACTIONS(5415), + [anon_sym_DASH_EQ] = ACTIONS(5415), + [anon_sym_LT_LT_EQ] = ACTIONS(5415), + [anon_sym_GT_GT_EQ] = ACTIONS(5415), + [anon_sym_AMP_EQ] = ACTIONS(5415), + [anon_sym_CARET_EQ] = ACTIONS(5415), + [anon_sym_PIPE_EQ] = ACTIONS(5415), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5424), + [anon_sym_BANG_EQ] = ACTIONS(5424), + [anon_sym_LT] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5427), + [anon_sym_LT_EQ] = ACTIONS(5430), + [anon_sym_GT_EQ] = ACTIONS(5430), + [anon_sym_LT_LT] = ACTIONS(5433), + [anon_sym_GT_GT] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_PERCENT] = ACTIONS(5406), + [anon_sym_DASH_DASH] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(4107), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4110), [sym_comment] = ACTIONS(121), }, - [1011] = { - [anon_sym_LPAREN] = ACTIONS(3534), + [1014] = { + [anon_sym_LPAREN] = ACTIONS(4113), [anon_sym_COMMA] = ACTIONS(477), [anon_sym_SEMI] = ACTIONS(477), [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_EQ] = ACTIONS(5412), - [anon_sym_QMARK] = ACTIONS(5415), - [anon_sym_STAR_EQ] = ACTIONS(5418), - [anon_sym_SLASH_EQ] = ACTIONS(5418), - [anon_sym_PERCENT_EQ] = ACTIONS(5418), - [anon_sym_PLUS_EQ] = ACTIONS(5418), - [anon_sym_DASH_EQ] = ACTIONS(5418), - [anon_sym_LT_LT_EQ] = ACTIONS(5418), - [anon_sym_GT_GT_EQ] = ACTIONS(5418), - [anon_sym_AMP_EQ] = ACTIONS(5418), - [anon_sym_CARET_EQ] = ACTIONS(5418), - [anon_sym_PIPE_EQ] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5424), - [anon_sym_AMP_AMP] = ACTIONS(5424), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_CARET] = ACTIONS(5421), - [anon_sym_EQ_EQ] = ACTIONS(5427), - [anon_sym_BANG_EQ] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5430), - [anon_sym_GT] = ACTIONS(5430), - [anon_sym_LT_EQ] = ACTIONS(5433), - [anon_sym_GT_EQ] = ACTIONS(5433), - [anon_sym_LT_LT] = ACTIONS(5436), - [anon_sym_GT_GT] = ACTIONS(5436), - [anon_sym_PLUS] = ACTIONS(5409), - [anon_sym_DASH] = ACTIONS(5409), - [anon_sym_SLASH] = ACTIONS(5409), - [anon_sym_PERCENT] = ACTIONS(5409), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_DASH_GT] = ACTIONS(3573), + [anon_sym_STAR] = ACTIONS(5436), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_EQ] = ACTIONS(5439), + [anon_sym_QMARK] = ACTIONS(5442), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_AMP] = ACTIONS(5448), + [anon_sym_PIPE_PIPE] = ACTIONS(5451), + [anon_sym_AMP_AMP] = ACTIONS(5451), + [anon_sym_PIPE] = ACTIONS(5448), + [anon_sym_CARET] = ACTIONS(5448), + [anon_sym_EQ_EQ] = ACTIONS(5454), + [anon_sym_BANG_EQ] = ACTIONS(5454), + [anon_sym_LT] = ACTIONS(5457), + [anon_sym_GT] = ACTIONS(5457), + [anon_sym_LT_EQ] = ACTIONS(5460), + [anon_sym_GT_EQ] = ACTIONS(5460), + [anon_sym_LT_LT] = ACTIONS(5463), + [anon_sym_GT_GT] = ACTIONS(5463), + [anon_sym_PLUS] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5436), + [anon_sym_SLASH] = ACTIONS(5436), + [anon_sym_PERCENT] = ACTIONS(5436), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), [sym_comment] = ACTIONS(121), }, - [1012] = { - [anon_sym_LPAREN] = ACTIONS(4128), + [1015] = { + [anon_sym_LPAREN] = ACTIONS(3587), [anon_sym_COMMA] = ACTIONS(481), [anon_sym_SEMI] = ACTIONS(481), [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(5442), - [anon_sym_QMARK] = ACTIONS(5445), - [anon_sym_STAR_EQ] = ACTIONS(5448), - [anon_sym_SLASH_EQ] = ACTIONS(5448), - [anon_sym_PERCENT_EQ] = ACTIONS(5448), - [anon_sym_PLUS_EQ] = ACTIONS(5448), - [anon_sym_DASH_EQ] = ACTIONS(5448), - [anon_sym_LT_LT_EQ] = ACTIONS(5448), - [anon_sym_GT_GT_EQ] = ACTIONS(5448), - [anon_sym_AMP_EQ] = ACTIONS(5448), - [anon_sym_CARET_EQ] = ACTIONS(5448), - [anon_sym_PIPE_EQ] = ACTIONS(5448), - [anon_sym_AMP] = ACTIONS(5451), - [anon_sym_PIPE_PIPE] = ACTIONS(5454), - [anon_sym_AMP_AMP] = ACTIONS(5454), - [anon_sym_PIPE] = ACTIONS(5451), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym_EQ_EQ] = ACTIONS(5457), - [anon_sym_BANG_EQ] = ACTIONS(5457), - [anon_sym_LT] = ACTIONS(5460), - [anon_sym_GT] = ACTIONS(5460), - [anon_sym_LT_EQ] = ACTIONS(5463), - [anon_sym_GT_EQ] = ACTIONS(5463), - [anon_sym_LT_LT] = ACTIONS(5466), - [anon_sym_GT_GT] = ACTIONS(5466), - [anon_sym_PLUS] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5439), - [anon_sym_PERCENT] = ACTIONS(5439), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4167), - [anon_sym_DASH_GT] = ACTIONS(4167), + [anon_sym_STAR] = ACTIONS(5466), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_EQ] = ACTIONS(5469), + [anon_sym_QMARK] = ACTIONS(5472), + [anon_sym_STAR_EQ] = ACTIONS(5475), + [anon_sym_SLASH_EQ] = ACTIONS(5475), + [anon_sym_PERCENT_EQ] = ACTIONS(5475), + [anon_sym_PLUS_EQ] = ACTIONS(5475), + [anon_sym_DASH_EQ] = ACTIONS(5475), + [anon_sym_LT_LT_EQ] = ACTIONS(5475), + [anon_sym_GT_GT_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(5475), + [anon_sym_CARET_EQ] = ACTIONS(5475), + [anon_sym_PIPE_EQ] = ACTIONS(5475), + [anon_sym_AMP] = ACTIONS(5478), + [anon_sym_PIPE_PIPE] = ACTIONS(5481), + [anon_sym_AMP_AMP] = ACTIONS(5481), + [anon_sym_PIPE] = ACTIONS(5478), + [anon_sym_CARET] = ACTIONS(5478), + [anon_sym_EQ_EQ] = ACTIONS(5484), + [anon_sym_BANG_EQ] = ACTIONS(5484), + [anon_sym_LT] = ACTIONS(5487), + [anon_sym_GT] = ACTIONS(5487), + [anon_sym_LT_EQ] = ACTIONS(5490), + [anon_sym_GT_EQ] = ACTIONS(5490), + [anon_sym_LT_LT] = ACTIONS(5493), + [anon_sym_GT_GT] = ACTIONS(5493), + [anon_sym_PLUS] = ACTIONS(5466), + [anon_sym_DASH] = ACTIONS(5466), + [anon_sym_SLASH] = ACTIONS(5466), + [anon_sym_PERCENT] = ACTIONS(5466), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_DOT] = ACTIONS(3626), + [anon_sym_DASH_GT] = ACTIONS(3626), [sym_comment] = ACTIONS(121), }, - [1013] = { - [anon_sym_LPAREN] = ACTIONS(3576), + [1016] = { + [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(485), [anon_sym_SEMI] = ACTIONS(485), [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(5469), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(5472), - [anon_sym_QMARK] = ACTIONS(5475), - [anon_sym_STAR_EQ] = ACTIONS(5478), - [anon_sym_SLASH_EQ] = ACTIONS(5478), - [anon_sym_PERCENT_EQ] = ACTIONS(5478), - [anon_sym_PLUS_EQ] = ACTIONS(5478), - [anon_sym_DASH_EQ] = ACTIONS(5478), - [anon_sym_LT_LT_EQ] = ACTIONS(5478), - [anon_sym_GT_GT_EQ] = ACTIONS(5478), - [anon_sym_AMP_EQ] = ACTIONS(5478), - [anon_sym_CARET_EQ] = ACTIONS(5478), - [anon_sym_PIPE_EQ] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5481), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5481), - [anon_sym_CARET] = ACTIONS(5481), - [anon_sym_EQ_EQ] = ACTIONS(5487), - [anon_sym_BANG_EQ] = ACTIONS(5487), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_LT_EQ] = ACTIONS(5493), - [anon_sym_GT_EQ] = ACTIONS(5493), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5469), - [anon_sym_DASH] = ACTIONS(5469), - [anon_sym_SLASH] = ACTIONS(5469), - [anon_sym_PERCENT] = ACTIONS(5469), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3615), - [anon_sym_DASH_GT] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym_EQ] = ACTIONS(5499), + [anon_sym_QMARK] = ACTIONS(5502), + [anon_sym_STAR_EQ] = ACTIONS(5505), + [anon_sym_SLASH_EQ] = ACTIONS(5505), + [anon_sym_PERCENT_EQ] = ACTIONS(5505), + [anon_sym_PLUS_EQ] = ACTIONS(5505), + [anon_sym_DASH_EQ] = ACTIONS(5505), + [anon_sym_LT_LT_EQ] = ACTIONS(5505), + [anon_sym_GT_GT_EQ] = ACTIONS(5505), + [anon_sym_AMP_EQ] = ACTIONS(5505), + [anon_sym_CARET_EQ] = ACTIONS(5505), + [anon_sym_PIPE_EQ] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5511), + [anon_sym_AMP_AMP] = ACTIONS(5511), + [anon_sym_PIPE] = ACTIONS(5508), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_EQ_EQ] = ACTIONS(5514), + [anon_sym_BANG_EQ] = ACTIONS(5514), + [anon_sym_LT] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5517), + [anon_sym_LT_EQ] = ACTIONS(5520), + [anon_sym_GT_EQ] = ACTIONS(5520), + [anon_sym_LT_LT] = ACTIONS(5523), + [anon_sym_GT_GT] = ACTIONS(5523), + [anon_sym_PLUS] = ACTIONS(5496), + [anon_sym_DASH] = ACTIONS(5496), + [anon_sym_SLASH] = ACTIONS(5496), + [anon_sym_PERCENT] = ACTIONS(5496), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4224), [sym_comment] = ACTIONS(121), }, - [1014] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(5499), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [1017] = { + [anon_sym_LPAREN] = ACTIONS(3629), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(5529), + [anon_sym_QMARK] = ACTIONS(5532), + [anon_sym_STAR_EQ] = ACTIONS(5535), + [anon_sym_SLASH_EQ] = ACTIONS(5535), + [anon_sym_PERCENT_EQ] = ACTIONS(5535), + [anon_sym_PLUS_EQ] = ACTIONS(5535), + [anon_sym_DASH_EQ] = ACTIONS(5535), + [anon_sym_LT_LT_EQ] = ACTIONS(5535), + [anon_sym_GT_GT_EQ] = ACTIONS(5535), + [anon_sym_AMP_EQ] = ACTIONS(5535), + [anon_sym_CARET_EQ] = ACTIONS(5535), + [anon_sym_PIPE_EQ] = ACTIONS(5535), + [anon_sym_AMP] = ACTIONS(5538), + [anon_sym_PIPE_PIPE] = ACTIONS(5541), + [anon_sym_AMP_AMP] = ACTIONS(5541), + [anon_sym_PIPE] = ACTIONS(5538), + [anon_sym_CARET] = ACTIONS(5538), + [anon_sym_EQ_EQ] = ACTIONS(5544), + [anon_sym_BANG_EQ] = ACTIONS(5544), + [anon_sym_LT] = ACTIONS(5547), + [anon_sym_GT] = ACTIONS(5547), + [anon_sym_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_LT] = ACTIONS(5553), + [anon_sym_GT_GT] = ACTIONS(5553), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_SLASH] = ACTIONS(5526), + [anon_sym_PERCENT] = ACTIONS(5526), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), [sym_comment] = ACTIONS(121), }, - [1015] = { - [sym__expression] = STATE(1016), + [1018] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(5556), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [1019] = { + [sym__expression] = STATE(1020), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -46103,65 +46736,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1016] = { - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(5501), - [anon_sym_LBRACK] = ACTIONS(3871), - [anon_sym_EQ] = ACTIONS(5504), - [anon_sym_QMARK] = ACTIONS(5507), - [anon_sym_STAR_EQ] = ACTIONS(5510), - [anon_sym_SLASH_EQ] = ACTIONS(5510), - [anon_sym_PERCENT_EQ] = ACTIONS(5510), - [anon_sym_PLUS_EQ] = ACTIONS(5510), - [anon_sym_DASH_EQ] = ACTIONS(5510), - [anon_sym_LT_LT_EQ] = ACTIONS(5510), - [anon_sym_GT_GT_EQ] = ACTIONS(5510), - [anon_sym_AMP_EQ] = ACTIONS(5510), - [anon_sym_CARET_EQ] = ACTIONS(5510), - [anon_sym_PIPE_EQ] = ACTIONS(5510), - [anon_sym_AMP] = ACTIONS(5513), - [anon_sym_PIPE_PIPE] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5516), - [anon_sym_PIPE] = ACTIONS(5513), - [anon_sym_CARET] = ACTIONS(5513), - [anon_sym_EQ_EQ] = ACTIONS(5519), - [anon_sym_BANG_EQ] = ACTIONS(5519), - [anon_sym_LT] = ACTIONS(5522), - [anon_sym_GT] = ACTIONS(5522), - [anon_sym_LT_EQ] = ACTIONS(5525), - [anon_sym_GT_EQ] = ACTIONS(5525), - [anon_sym_LT_LT] = ACTIONS(5528), - [anon_sym_GT_GT] = ACTIONS(5528), - [anon_sym_PLUS] = ACTIONS(5501), - [anon_sym_DASH] = ACTIONS(5501), - [anon_sym_SLASH] = ACTIONS(5501), - [anon_sym_PERCENT] = ACTIONS(5501), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3904), - [anon_sym_DASH_GT] = ACTIONS(3904), + [1020] = { + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_EQ] = ACTIONS(5561), + [anon_sym_QMARK] = ACTIONS(5564), + [anon_sym_STAR_EQ] = ACTIONS(5567), + [anon_sym_SLASH_EQ] = ACTIONS(5567), + [anon_sym_PERCENT_EQ] = ACTIONS(5567), + [anon_sym_PLUS_EQ] = ACTIONS(5567), + [anon_sym_DASH_EQ] = ACTIONS(5567), + [anon_sym_LT_LT_EQ] = ACTIONS(5567), + [anon_sym_GT_GT_EQ] = ACTIONS(5567), + [anon_sym_AMP_EQ] = ACTIONS(5567), + [anon_sym_CARET_EQ] = ACTIONS(5567), + [anon_sym_PIPE_EQ] = ACTIONS(5567), + [anon_sym_AMP] = ACTIONS(5570), + [anon_sym_PIPE_PIPE] = ACTIONS(5573), + [anon_sym_AMP_AMP] = ACTIONS(5573), + [anon_sym_PIPE] = ACTIONS(5570), + [anon_sym_CARET] = ACTIONS(5570), + [anon_sym_EQ_EQ] = ACTIONS(5576), + [anon_sym_BANG_EQ] = ACTIONS(5576), + [anon_sym_LT] = ACTIONS(5579), + [anon_sym_GT] = ACTIONS(5579), + [anon_sym_LT_EQ] = ACTIONS(5582), + [anon_sym_GT_EQ] = ACTIONS(5582), + [anon_sym_LT_LT] = ACTIONS(5585), + [anon_sym_GT_GT] = ACTIONS(5585), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_SLASH] = ACTIONS(5558), + [anon_sym_PERCENT] = ACTIONS(5558), + [anon_sym_DASH_DASH] = ACTIONS(3958), + [anon_sym_PLUS_PLUS] = ACTIONS(3958), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), [sym_comment] = ACTIONS(121), }, - [1017] = { + [1021] = { [anon_sym_POUNDinclude] = ACTIONS(271), [anon_sym_POUNDdefine] = ACTIONS(271), [anon_sym_LPAREN] = ACTIONS(269), @@ -46171,22 +46805,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(269), [anon_sym_extern] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_RBRACE] = ACTIONS(5531), + [anon_sym_RBRACE] = ACTIONS(5588), [anon_sym_STAR] = ACTIONS(269), [anon_sym_static] = ACTIONS(271), [anon_sym_typedef] = ACTIONS(271), [anon_sym_auto] = ACTIONS(271), [anon_sym_register] = ACTIONS(271), - [anon_sym_const] = ACTIONS(5534), - [anon_sym_restrict] = ACTIONS(5534), - [anon_sym_volatile] = ACTIONS(5534), + [anon_sym_const] = ACTIONS(5591), + [anon_sym_restrict] = ACTIONS(5591), + [anon_sym_volatile] = ACTIONS(5591), [sym_function_specifier] = ACTIONS(271), - [anon_sym_unsigned] = ACTIONS(5534), - [anon_sym_long] = ACTIONS(5534), - [anon_sym_short] = ACTIONS(5534), - [anon_sym_enum] = ACTIONS(5534), - [anon_sym_struct] = ACTIONS(5534), - [anon_sym_union] = ACTIONS(5534), + [anon_sym_unsigned] = ACTIONS(5591), + [anon_sym_long] = ACTIONS(5591), + [anon_sym_short] = ACTIONS(5591), + [anon_sym_enum] = ACTIONS(5591), + [anon_sym_struct] = ACTIONS(5591), + [anon_sym_union] = ACTIONS(5591), [anon_sym_if] = ACTIONS(271), [anon_sym_switch] = ACTIONS(271), [anon_sym_case] = ACTIONS(271), @@ -46209,33 +46843,33 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(271), [sym_char_literal] = ACTIONS(271), [sym_string_literal] = ACTIONS(271), - [sym_identifier] = ACTIONS(5537), + [sym_identifier] = ACTIONS(5594), [sym_comment] = ACTIONS(121), }, - [1018] = { - [sym__declarator] = STATE(932), + [1022] = { + [sym__declarator] = STATE(936), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), [anon_sym_LPAREN] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_STAR] = ACTIONS(5321), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [1019] = { - [sym_compound_statement] = STATE(461), + [1023] = { + [sym_compound_statement] = STATE(465), [aux_sym_declaration_repeat1] = STATE(37), - [aux_sym_struct_declaration_repeat1] = STATE(409), + [aux_sym_struct_declaration_repeat1] = STATE(413), [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(5540), - [anon_sym_SEMI] = ACTIONS(5542), + [anon_sym_COMMA] = ACTIONS(5597), + [anon_sym_SEMI] = ACTIONS(5599), [anon_sym_LBRACE] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(285), [anon_sym_EQ] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(815), + [anon_sym_COLON] = ACTIONS(833), [sym_comment] = ACTIONS(121), }, - [1020] = { + [1024] = { [anon_sym_POUNDinclude] = ACTIONS(293), [anon_sym_POUNDdefine] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(291), @@ -46245,22 +46879,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(291), [anon_sym_extern] = ACTIONS(293), [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_RBRACE] = ACTIONS(5544), + [anon_sym_RBRACE] = ACTIONS(5601), [anon_sym_STAR] = ACTIONS(291), [anon_sym_static] = ACTIONS(293), [anon_sym_typedef] = ACTIONS(293), [anon_sym_auto] = ACTIONS(293), [anon_sym_register] = ACTIONS(293), - [anon_sym_const] = ACTIONS(5547), - [anon_sym_restrict] = ACTIONS(5547), - [anon_sym_volatile] = ACTIONS(5547), + [anon_sym_const] = ACTIONS(5604), + [anon_sym_restrict] = ACTIONS(5604), + [anon_sym_volatile] = ACTIONS(5604), [sym_function_specifier] = ACTIONS(293), - [anon_sym_unsigned] = ACTIONS(5547), - [anon_sym_long] = ACTIONS(5547), - [anon_sym_short] = ACTIONS(5547), - [anon_sym_enum] = ACTIONS(5547), - [anon_sym_struct] = ACTIONS(5547), - [anon_sym_union] = ACTIONS(5547), + [anon_sym_unsigned] = ACTIONS(5604), + [anon_sym_long] = ACTIONS(5604), + [anon_sym_short] = ACTIONS(5604), + [anon_sym_enum] = ACTIONS(5604), + [anon_sym_struct] = ACTIONS(5604), + [anon_sym_union] = ACTIONS(5604), [anon_sym_if] = ACTIONS(293), [anon_sym_switch] = ACTIONS(293), [anon_sym_case] = ACTIONS(293), @@ -46283,18 +46917,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(293), [sym_char_literal] = ACTIONS(293), [sym_string_literal] = ACTIONS(293), - [sym_identifier] = ACTIONS(5550), + [sym_identifier] = ACTIONS(5607), [sym_comment] = ACTIONS(121), }, - [1021] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [1025] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -46311,12 +46945,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(1023), + [sym_type_name] = STATE(1027), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -46326,68 +46961,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [1022] = { - [anon_sym_LPAREN] = ACTIONS(4241), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(5553), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_EQ] = ACTIONS(5556), - [anon_sym_QMARK] = ACTIONS(5559), - [anon_sym_STAR_EQ] = ACTIONS(5562), - [anon_sym_SLASH_EQ] = ACTIONS(5562), - [anon_sym_PERCENT_EQ] = ACTIONS(5562), - [anon_sym_PLUS_EQ] = ACTIONS(5562), - [anon_sym_DASH_EQ] = ACTIONS(5562), - [anon_sym_LT_LT_EQ] = ACTIONS(5562), - [anon_sym_GT_GT_EQ] = ACTIONS(5562), - [anon_sym_AMP_EQ] = ACTIONS(5562), - [anon_sym_CARET_EQ] = ACTIONS(5562), - [anon_sym_PIPE_EQ] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(5565), - [anon_sym_PIPE_PIPE] = ACTIONS(5568), - [anon_sym_AMP_AMP] = ACTIONS(5568), - [anon_sym_PIPE] = ACTIONS(5565), - [anon_sym_CARET] = ACTIONS(5565), - [anon_sym_EQ_EQ] = ACTIONS(5571), - [anon_sym_BANG_EQ] = ACTIONS(5571), - [anon_sym_LT] = ACTIONS(5574), - [anon_sym_GT] = ACTIONS(5574), - [anon_sym_LT_EQ] = ACTIONS(5577), - [anon_sym_GT_EQ] = ACTIONS(5577), - [anon_sym_LT_LT] = ACTIONS(5580), - [anon_sym_GT_GT] = ACTIONS(5580), - [anon_sym_PLUS] = ACTIONS(5553), - [anon_sym_DASH] = ACTIONS(5553), - [anon_sym_SLASH] = ACTIONS(5553), - [anon_sym_PERCENT] = ACTIONS(5553), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4280), - [anon_sym_DASH_GT] = ACTIONS(4280), + [1026] = { + [anon_sym_LPAREN] = ACTIONS(4298), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(5610), + [anon_sym_LBRACK] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(5613), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_STAR_EQ] = ACTIONS(5619), + [anon_sym_SLASH_EQ] = ACTIONS(5619), + [anon_sym_PERCENT_EQ] = ACTIONS(5619), + [anon_sym_PLUS_EQ] = ACTIONS(5619), + [anon_sym_DASH_EQ] = ACTIONS(5619), + [anon_sym_LT_LT_EQ] = ACTIONS(5619), + [anon_sym_GT_GT_EQ] = ACTIONS(5619), + [anon_sym_AMP_EQ] = ACTIONS(5619), + [anon_sym_CARET_EQ] = ACTIONS(5619), + [anon_sym_PIPE_EQ] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5625), + [anon_sym_PIPE] = ACTIONS(5622), + [anon_sym_CARET] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5631), + [anon_sym_GT] = ACTIONS(5631), + [anon_sym_LT_EQ] = ACTIONS(5634), + [anon_sym_GT_EQ] = ACTIONS(5634), + [anon_sym_LT_LT] = ACTIONS(5637), + [anon_sym_GT_GT] = ACTIONS(5637), + [anon_sym_PLUS] = ACTIONS(5610), + [anon_sym_DASH] = ACTIONS(5610), + [anon_sym_SLASH] = ACTIONS(5610), + [anon_sym_PERCENT] = ACTIONS(5610), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DOT] = ACTIONS(4337), + [anon_sym_DASH_GT] = ACTIONS(4337), [sym_comment] = ACTIONS(121), }, - [1023] = { - [anon_sym_RPAREN] = ACTIONS(5583), + [1027] = { + [anon_sym_RPAREN] = ACTIONS(5640), [sym_comment] = ACTIONS(121), }, - [1024] = { - [sym__expression] = STATE(1025), + [1028] = { + [sym__expression] = STATE(1029), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -46404,319 +47039,320 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(5588), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(5588), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(5593), - [anon_sym_DASH] = ACTIONS(5593), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(5596), - [anon_sym_PLUS_PLUS] = ACTIONS(5596), - [anon_sym_sizeof] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5642), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(5648), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(5653), + [anon_sym_PLUS_PLUS] = ACTIONS(5653), + [anon_sym_sizeof] = ACTIONS(2319), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1025] = { - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(5599), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_EQ] = ACTIONS(5602), - [anon_sym_QMARK] = ACTIONS(5605), - [anon_sym_STAR_EQ] = ACTIONS(5608), - [anon_sym_SLASH_EQ] = ACTIONS(5608), - [anon_sym_PERCENT_EQ] = ACTIONS(5608), - [anon_sym_PLUS_EQ] = ACTIONS(5608), - [anon_sym_DASH_EQ] = ACTIONS(5608), - [anon_sym_LT_LT_EQ] = ACTIONS(5608), - [anon_sym_GT_GT_EQ] = ACTIONS(5608), - [anon_sym_AMP_EQ] = ACTIONS(5608), - [anon_sym_CARET_EQ] = ACTIONS(5608), - [anon_sym_PIPE_EQ] = ACTIONS(5608), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_PIPE_PIPE] = ACTIONS(5614), - [anon_sym_AMP_AMP] = ACTIONS(5614), - [anon_sym_PIPE] = ACTIONS(5611), - [anon_sym_CARET] = ACTIONS(5611), - [anon_sym_EQ_EQ] = ACTIONS(5617), - [anon_sym_BANG_EQ] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5620), - [anon_sym_GT] = ACTIONS(5620), - [anon_sym_LT_EQ] = ACTIONS(5623), - [anon_sym_GT_EQ] = ACTIONS(5623), - [anon_sym_LT_LT] = ACTIONS(5626), - [anon_sym_GT_GT] = ACTIONS(5626), - [anon_sym_PLUS] = ACTIONS(5599), - [anon_sym_DASH] = ACTIONS(5599), - [anon_sym_SLASH] = ACTIONS(5599), - [anon_sym_PERCENT] = ACTIONS(5599), - [anon_sym_DASH_DASH] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DASH_GT] = ACTIONS(3489), + [1029] = { + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(5656), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_EQ] = ACTIONS(5659), + [anon_sym_QMARK] = ACTIONS(5662), + [anon_sym_STAR_EQ] = ACTIONS(5665), + [anon_sym_SLASH_EQ] = ACTIONS(5665), + [anon_sym_PERCENT_EQ] = ACTIONS(5665), + [anon_sym_PLUS_EQ] = ACTIONS(5665), + [anon_sym_DASH_EQ] = ACTIONS(5665), + [anon_sym_LT_LT_EQ] = ACTIONS(5665), + [anon_sym_GT_GT_EQ] = ACTIONS(5665), + [anon_sym_AMP_EQ] = ACTIONS(5665), + [anon_sym_CARET_EQ] = ACTIONS(5665), + [anon_sym_PIPE_EQ] = ACTIONS(5665), + [anon_sym_AMP] = ACTIONS(5668), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_AMP_AMP] = ACTIONS(5671), + [anon_sym_PIPE] = ACTIONS(5668), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_EQ_EQ] = ACTIONS(5674), + [anon_sym_BANG_EQ] = ACTIONS(5674), + [anon_sym_LT] = ACTIONS(5677), + [anon_sym_GT] = ACTIONS(5677), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_LT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_PLUS] = ACTIONS(5656), + [anon_sym_DASH] = ACTIONS(5656), + [anon_sym_SLASH] = ACTIONS(5656), + [anon_sym_PERCENT] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(3539), + [anon_sym_PLUS_PLUS] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_DASH_GT] = ACTIONS(3542), [sym_comment] = ACTIONS(121), }, - [1026] = { - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(5632), - [anon_sym_QMARK] = ACTIONS(5635), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(5641), - [anon_sym_PIPE_PIPE] = ACTIONS(5644), - [anon_sym_AMP_AMP] = ACTIONS(5644), - [anon_sym_PIPE] = ACTIONS(5641), - [anon_sym_CARET] = ACTIONS(5641), - [anon_sym_EQ_EQ] = ACTIONS(5647), - [anon_sym_BANG_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_GT] = ACTIONS(5650), - [anon_sym_LT_EQ] = ACTIONS(5653), - [anon_sym_GT_EQ] = ACTIONS(5653), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5656), - [anon_sym_PLUS] = ACTIONS(5629), - [anon_sym_DASH] = ACTIONS(5629), - [anon_sym_SLASH] = ACTIONS(5629), - [anon_sym_PERCENT] = ACTIONS(5629), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_DASH_GT] = ACTIONS(3657), + [1030] = { + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(5686), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_EQ] = ACTIONS(5689), + [anon_sym_QMARK] = ACTIONS(5692), + [anon_sym_STAR_EQ] = ACTIONS(5695), + [anon_sym_SLASH_EQ] = ACTIONS(5695), + [anon_sym_PERCENT_EQ] = ACTIONS(5695), + [anon_sym_PLUS_EQ] = ACTIONS(5695), + [anon_sym_DASH_EQ] = ACTIONS(5695), + [anon_sym_LT_LT_EQ] = ACTIONS(5695), + [anon_sym_GT_GT_EQ] = ACTIONS(5695), + [anon_sym_AMP_EQ] = ACTIONS(5695), + [anon_sym_CARET_EQ] = ACTIONS(5695), + [anon_sym_PIPE_EQ] = ACTIONS(5695), + [anon_sym_AMP] = ACTIONS(5698), + [anon_sym_PIPE_PIPE] = ACTIONS(5701), + [anon_sym_AMP_AMP] = ACTIONS(5701), + [anon_sym_PIPE] = ACTIONS(5698), + [anon_sym_CARET] = ACTIONS(5698), + [anon_sym_EQ_EQ] = ACTIONS(5704), + [anon_sym_BANG_EQ] = ACTIONS(5704), + [anon_sym_LT] = ACTIONS(5707), + [anon_sym_GT] = ACTIONS(5707), + [anon_sym_LT_EQ] = ACTIONS(5710), + [anon_sym_GT_EQ] = ACTIONS(5710), + [anon_sym_LT_LT] = ACTIONS(5713), + [anon_sym_GT_GT] = ACTIONS(5713), + [anon_sym_PLUS] = ACTIONS(5686), + [anon_sym_DASH] = ACTIONS(5686), + [anon_sym_SLASH] = ACTIONS(5686), + [anon_sym_PERCENT] = ACTIONS(5686), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_DASH_GT] = ACTIONS(3710), [sym_comment] = ACTIONS(121), }, - [1027] = { - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_EQ] = ACTIONS(5662), - [anon_sym_QMARK] = ACTIONS(5665), - [anon_sym_STAR_EQ] = ACTIONS(5668), - [anon_sym_SLASH_EQ] = ACTIONS(5668), - [anon_sym_PERCENT_EQ] = ACTIONS(5668), - [anon_sym_PLUS_EQ] = ACTIONS(5668), - [anon_sym_DASH_EQ] = ACTIONS(5668), - [anon_sym_LT_LT_EQ] = ACTIONS(5668), - [anon_sym_GT_GT_EQ] = ACTIONS(5668), - [anon_sym_AMP_EQ] = ACTIONS(5668), - [anon_sym_CARET_EQ] = ACTIONS(5668), - [anon_sym_PIPE_EQ] = ACTIONS(5668), - [anon_sym_AMP] = ACTIONS(5671), - [anon_sym_PIPE_PIPE] = ACTIONS(5674), - [anon_sym_AMP_AMP] = ACTIONS(5674), - [anon_sym_PIPE] = ACTIONS(5671), - [anon_sym_CARET] = ACTIONS(5671), - [anon_sym_EQ_EQ] = ACTIONS(5677), - [anon_sym_BANG_EQ] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(5680), - [anon_sym_GT] = ACTIONS(5680), - [anon_sym_LT_EQ] = ACTIONS(5683), - [anon_sym_GT_EQ] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_PLUS] = ACTIONS(5659), - [anon_sym_DASH] = ACTIONS(5659), - [anon_sym_SLASH] = ACTIONS(5659), - [anon_sym_PERCENT] = ACTIONS(5659), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4398), - [anon_sym_DASH_GT] = ACTIONS(4398), + [1031] = { + [anon_sym_LPAREN] = ACTIONS(4416), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(5716), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_EQ] = ACTIONS(5719), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_STAR_EQ] = ACTIONS(5725), + [anon_sym_SLASH_EQ] = ACTIONS(5725), + [anon_sym_PERCENT_EQ] = ACTIONS(5725), + [anon_sym_PLUS_EQ] = ACTIONS(5725), + [anon_sym_DASH_EQ] = ACTIONS(5725), + [anon_sym_LT_LT_EQ] = ACTIONS(5725), + [anon_sym_GT_GT_EQ] = ACTIONS(5725), + [anon_sym_AMP_EQ] = ACTIONS(5725), + [anon_sym_CARET_EQ] = ACTIONS(5725), + [anon_sym_PIPE_EQ] = ACTIONS(5725), + [anon_sym_AMP] = ACTIONS(5728), + [anon_sym_PIPE_PIPE] = ACTIONS(5731), + [anon_sym_AMP_AMP] = ACTIONS(5731), + [anon_sym_PIPE] = ACTIONS(5728), + [anon_sym_CARET] = ACTIONS(5728), + [anon_sym_EQ_EQ] = ACTIONS(5734), + [anon_sym_BANG_EQ] = ACTIONS(5734), + [anon_sym_LT] = ACTIONS(5737), + [anon_sym_GT] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5740), + [anon_sym_GT_EQ] = ACTIONS(5740), + [anon_sym_LT_LT] = ACTIONS(5743), + [anon_sym_GT_GT] = ACTIONS(5743), + [anon_sym_PLUS] = ACTIONS(5716), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SLASH] = ACTIONS(5716), + [anon_sym_PERCENT] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(4452), + [anon_sym_PLUS_PLUS] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_DASH_GT] = ACTIONS(4455), [sym_comment] = ACTIONS(121), }, - [1028] = { - [anon_sym_LPAREN] = ACTIONS(4401), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(5689), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(5692), - [anon_sym_QMARK] = ACTIONS(5695), - [anon_sym_STAR_EQ] = ACTIONS(5698), - [anon_sym_SLASH_EQ] = ACTIONS(5698), - [anon_sym_PERCENT_EQ] = ACTIONS(5698), - [anon_sym_PLUS_EQ] = ACTIONS(5698), - [anon_sym_DASH_EQ] = ACTIONS(5698), - [anon_sym_LT_LT_EQ] = ACTIONS(5698), - [anon_sym_GT_GT_EQ] = ACTIONS(5698), - [anon_sym_AMP_EQ] = ACTIONS(5698), - [anon_sym_CARET_EQ] = ACTIONS(5698), - [anon_sym_PIPE_EQ] = ACTIONS(5698), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_PIPE_PIPE] = ACTIONS(5704), - [anon_sym_AMP_AMP] = ACTIONS(5704), - [anon_sym_PIPE] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5701), - [anon_sym_EQ_EQ] = ACTIONS(5707), - [anon_sym_BANG_EQ] = ACTIONS(5707), - [anon_sym_LT] = ACTIONS(5710), - [anon_sym_GT] = ACTIONS(5710), - [anon_sym_LT_EQ] = ACTIONS(5713), - [anon_sym_GT_EQ] = ACTIONS(5713), - [anon_sym_LT_LT] = ACTIONS(5716), - [anon_sym_GT_GT] = ACTIONS(5716), - [anon_sym_PLUS] = ACTIONS(5689), - [anon_sym_DASH] = ACTIONS(5689), - [anon_sym_SLASH] = ACTIONS(5689), - [anon_sym_PERCENT] = ACTIONS(5689), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DOT] = ACTIONS(4440), - [anon_sym_DASH_GT] = ACTIONS(4440), + [1032] = { + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(5746), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_EQ] = ACTIONS(5749), + [anon_sym_QMARK] = ACTIONS(5752), + [anon_sym_STAR_EQ] = ACTIONS(5755), + [anon_sym_SLASH_EQ] = ACTIONS(5755), + [anon_sym_PERCENT_EQ] = ACTIONS(5755), + [anon_sym_PLUS_EQ] = ACTIONS(5755), + [anon_sym_DASH_EQ] = ACTIONS(5755), + [anon_sym_LT_LT_EQ] = ACTIONS(5755), + [anon_sym_GT_GT_EQ] = ACTIONS(5755), + [anon_sym_AMP_EQ] = ACTIONS(5755), + [anon_sym_CARET_EQ] = ACTIONS(5755), + [anon_sym_PIPE_EQ] = ACTIONS(5755), + [anon_sym_AMP] = ACTIONS(5758), + [anon_sym_PIPE_PIPE] = ACTIONS(5761), + [anon_sym_AMP_AMP] = ACTIONS(5761), + [anon_sym_PIPE] = ACTIONS(5758), + [anon_sym_CARET] = ACTIONS(5758), + [anon_sym_EQ_EQ] = ACTIONS(5764), + [anon_sym_BANG_EQ] = ACTIONS(5764), + [anon_sym_LT] = ACTIONS(5767), + [anon_sym_GT] = ACTIONS(5767), + [anon_sym_LT_EQ] = ACTIONS(5770), + [anon_sym_GT_EQ] = ACTIONS(5770), + [anon_sym_LT_LT] = ACTIONS(5773), + [anon_sym_GT_GT] = ACTIONS(5773), + [anon_sym_PLUS] = ACTIONS(5746), + [anon_sym_DASH] = ACTIONS(5746), + [anon_sym_SLASH] = ACTIONS(5746), + [anon_sym_PERCENT] = ACTIONS(5746), + [anon_sym_DASH_DASH] = ACTIONS(4494), + [anon_sym_PLUS_PLUS] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_DASH_GT] = ACTIONS(4497), [sym_comment] = ACTIONS(121), }, - [1029] = { - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(5719), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_EQ] = ACTIONS(5722), - [anon_sym_QMARK] = ACTIONS(5725), - [anon_sym_STAR_EQ] = ACTIONS(5728), - [anon_sym_SLASH_EQ] = ACTIONS(5728), - [anon_sym_PERCENT_EQ] = ACTIONS(5728), - [anon_sym_PLUS_EQ] = ACTIONS(5728), - [anon_sym_DASH_EQ] = ACTIONS(5728), - [anon_sym_LT_LT_EQ] = ACTIONS(5728), - [anon_sym_GT_GT_EQ] = ACTIONS(5728), - [anon_sym_AMP_EQ] = ACTIONS(5728), - [anon_sym_CARET_EQ] = ACTIONS(5728), - [anon_sym_PIPE_EQ] = ACTIONS(5728), - [anon_sym_AMP] = ACTIONS(5731), - [anon_sym_PIPE_PIPE] = ACTIONS(5734), - [anon_sym_AMP_AMP] = ACTIONS(5734), - [anon_sym_PIPE] = ACTIONS(5731), - [anon_sym_CARET] = ACTIONS(5731), - [anon_sym_EQ_EQ] = ACTIONS(5737), - [anon_sym_BANG_EQ] = ACTIONS(5737), - [anon_sym_LT] = ACTIONS(5740), - [anon_sym_GT] = ACTIONS(5740), - [anon_sym_LT_EQ] = ACTIONS(5743), - [anon_sym_GT_EQ] = ACTIONS(5743), - [anon_sym_LT_LT] = ACTIONS(5746), - [anon_sym_GT_GT] = ACTIONS(5746), - [anon_sym_PLUS] = ACTIONS(5719), - [anon_sym_DASH] = ACTIONS(5719), - [anon_sym_SLASH] = ACTIONS(5719), - [anon_sym_PERCENT] = ACTIONS(5719), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_DASH_GT] = ACTIONS(3699), + [1033] = { + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(5779), + [anon_sym_QMARK] = ACTIONS(5782), + [anon_sym_STAR_EQ] = ACTIONS(5785), + [anon_sym_SLASH_EQ] = ACTIONS(5785), + [anon_sym_PERCENT_EQ] = ACTIONS(5785), + [anon_sym_PLUS_EQ] = ACTIONS(5785), + [anon_sym_DASH_EQ] = ACTIONS(5785), + [anon_sym_LT_LT_EQ] = ACTIONS(5785), + [anon_sym_GT_GT_EQ] = ACTIONS(5785), + [anon_sym_AMP_EQ] = ACTIONS(5785), + [anon_sym_CARET_EQ] = ACTIONS(5785), + [anon_sym_PIPE_EQ] = ACTIONS(5785), + [anon_sym_AMP] = ACTIONS(5788), + [anon_sym_PIPE_PIPE] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5788), + [anon_sym_EQ_EQ] = ACTIONS(5794), + [anon_sym_BANG_EQ] = ACTIONS(5794), + [anon_sym_LT] = ACTIONS(5797), + [anon_sym_GT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5800), + [anon_sym_GT_EQ] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5803), + [anon_sym_GT_GT] = ACTIONS(5803), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5776), + [anon_sym_DASH_DASH] = ACTIONS(3749), + [anon_sym_PLUS_PLUS] = ACTIONS(3749), + [anon_sym_DOT] = ACTIONS(3752), + [anon_sym_DASH_GT] = ACTIONS(3752), [sym_comment] = ACTIONS(121), }, - [1030] = { - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [sym_function_specifier] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_sizeof] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1183), - [sym_char_literal] = ACTIONS(1183), - [sym_string_literal] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), + [1034] = { + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(5283), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [sym_function_specifier] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [sym_number_literal] = ACTIONS(1201), + [sym_char_literal] = ACTIONS(1201), + [sym_string_literal] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1203), [sym_comment] = ACTIONS(121), }, - [1031] = { - [anon_sym_RPAREN] = ACTIONS(5749), + [1035] = { + [anon_sym_RPAREN] = ACTIONS(5806), [sym_comment] = ACTIONS(121), }, - [1032] = { - [sym__expression] = STATE(1025), + [1036] = { + [sym__expression] = STATE(1029), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -46733,41 +47369,42 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1033] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(1046), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [1037] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(1050), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -46784,37 +47421,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [1034] = { - [sym__expression] = STATE(1043), + [1038] = { + [sym__expression] = STATE(1047), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -46831,83 +47469,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(5751), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1035] = { - [aux_sym_for_statement_repeat1] = STATE(1038), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(5753), - [anon_sym_SEMI] = ACTIONS(5755), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_STAR_EQ] = ACTIONS(3917), - [anon_sym_SLASH_EQ] = ACTIONS(3917), - [anon_sym_PERCENT_EQ] = ACTIONS(3917), - [anon_sym_PLUS_EQ] = ACTIONS(3917), - [anon_sym_DASH_EQ] = ACTIONS(3917), - [anon_sym_LT_LT_EQ] = ACTIONS(3917), - [anon_sym_GT_GT_EQ] = ACTIONS(3917), - [anon_sym_AMP_EQ] = ACTIONS(3917), - [anon_sym_CARET_EQ] = ACTIONS(3917), - [anon_sym_PIPE_EQ] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_CARET] = ACTIONS(3919), - [anon_sym_EQ_EQ] = ACTIONS(3923), - [anon_sym_BANG_EQ] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_LT_EQ] = ACTIONS(3927), - [anon_sym_GT_EQ] = ACTIONS(3927), - [anon_sym_LT_LT] = ACTIONS(3929), - [anon_sym_GT_GT] = ACTIONS(3929), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3911), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [1039] = { + [aux_sym_for_statement_repeat1] = STATE(1042), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(5810), + [anon_sym_SEMI] = ACTIONS(5812), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3974), + [anon_sym_SLASH_EQ] = ACTIONS(3974), + [anon_sym_PERCENT_EQ] = ACTIONS(3974), + [anon_sym_PLUS_EQ] = ACTIONS(3974), + [anon_sym_DASH_EQ] = ACTIONS(3974), + [anon_sym_LT_LT_EQ] = ACTIONS(3974), + [anon_sym_GT_GT_EQ] = ACTIONS(3974), + [anon_sym_AMP_EQ] = ACTIONS(3974), + [anon_sym_CARET_EQ] = ACTIONS(3974), + [anon_sym_PIPE_EQ] = ACTIONS(3974), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_CARET] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3982), + [anon_sym_GT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3984), + [anon_sym_GT_EQ] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3968), + [anon_sym_SLASH] = ACTIONS(3968), + [anon_sym_PERCENT] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [1036] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(1041), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [1040] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(1045), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -46924,37 +47563,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [1037] = { - [sym__expression] = STATE(1040), + [1041] = { + [sym__expression] = STATE(1044), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -46971,45 +47611,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(3760), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(3813), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1038] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(5757), + [1042] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(5814), [sym_comment] = ACTIONS(121), }, - [1039] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(831), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [1043] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(835), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47026,141 +47667,142 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [1040] = { - [aux_sym_for_statement_repeat1] = STATE(883), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [1044] = { + [aux_sym_for_statement_repeat1] = STATE(887), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(3966), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [1041] = { - [anon_sym_LPAREN] = ACTIONS(5759), - [anon_sym_SEMI] = ACTIONS(5759), - [anon_sym_extern] = ACTIONS(5763), - [anon_sym_LBRACE] = ACTIONS(5759), - [anon_sym_RBRACE] = ACTIONS(5759), - [anon_sym_STAR] = ACTIONS(5759), - [anon_sym_static] = ACTIONS(5763), - [anon_sym_typedef] = ACTIONS(5763), - [anon_sym_auto] = ACTIONS(5763), - [anon_sym_register] = ACTIONS(5763), - [anon_sym_const] = ACTIONS(5763), - [anon_sym_restrict] = ACTIONS(5763), - [anon_sym_volatile] = ACTIONS(5763), - [sym_function_specifier] = ACTIONS(5763), - [anon_sym_unsigned] = ACTIONS(5763), - [anon_sym_long] = ACTIONS(5763), - [anon_sym_short] = ACTIONS(5763), - [anon_sym_enum] = ACTIONS(5763), - [anon_sym_struct] = ACTIONS(5763), - [anon_sym_union] = ACTIONS(5763), - [anon_sym_if] = ACTIONS(5763), - [anon_sym_else] = ACTIONS(5763), - [anon_sym_switch] = ACTIONS(5763), - [anon_sym_case] = ACTIONS(5763), - [anon_sym_default] = ACTIONS(5763), - [anon_sym_while] = ACTIONS(5763), - [anon_sym_do] = ACTIONS(5763), - [anon_sym_for] = ACTIONS(5763), - [anon_sym_return] = ACTIONS(5763), - [anon_sym_break] = ACTIONS(5763), - [anon_sym_continue] = ACTIONS(5763), - [anon_sym_goto] = ACTIONS(5763), - [anon_sym_AMP] = ACTIONS(5759), - [anon_sym_BANG] = ACTIONS(5759), - [anon_sym_TILDE] = ACTIONS(5759), - [anon_sym_PLUS] = ACTIONS(5763), - [anon_sym_DASH] = ACTIONS(5763), - [anon_sym_DASH_DASH] = ACTIONS(5759), - [anon_sym_PLUS_PLUS] = ACTIONS(5759), - [anon_sym_sizeof] = ACTIONS(5763), - [sym_number_literal] = ACTIONS(5763), - [sym_char_literal] = ACTIONS(5763), - [sym_string_literal] = ACTIONS(5763), - [sym_identifier] = ACTIONS(5767), + [1045] = { + [anon_sym_LPAREN] = ACTIONS(5816), + [anon_sym_SEMI] = ACTIONS(5816), + [anon_sym_extern] = ACTIONS(5820), + [anon_sym_LBRACE] = ACTIONS(5816), + [anon_sym_RBRACE] = ACTIONS(5816), + [anon_sym_STAR] = ACTIONS(5816), + [anon_sym_static] = ACTIONS(5820), + [anon_sym_typedef] = ACTIONS(5820), + [anon_sym_auto] = ACTIONS(5820), + [anon_sym_register] = ACTIONS(5820), + [anon_sym_const] = ACTIONS(5820), + [anon_sym_restrict] = ACTIONS(5820), + [anon_sym_volatile] = ACTIONS(5820), + [sym_function_specifier] = ACTIONS(5820), + [anon_sym_unsigned] = ACTIONS(5820), + [anon_sym_long] = ACTIONS(5820), + [anon_sym_short] = ACTIONS(5820), + [anon_sym_enum] = ACTIONS(5820), + [anon_sym_struct] = ACTIONS(5820), + [anon_sym_union] = ACTIONS(5820), + [anon_sym_if] = ACTIONS(5820), + [anon_sym_else] = ACTIONS(5820), + [anon_sym_switch] = ACTIONS(5820), + [anon_sym_case] = ACTIONS(5820), + [anon_sym_default] = ACTIONS(5820), + [anon_sym_while] = ACTIONS(5820), + [anon_sym_do] = ACTIONS(5820), + [anon_sym_for] = ACTIONS(5820), + [anon_sym_return] = ACTIONS(5820), + [anon_sym_break] = ACTIONS(5820), + [anon_sym_continue] = ACTIONS(5820), + [anon_sym_goto] = ACTIONS(5820), + [anon_sym_AMP] = ACTIONS(5816), + [anon_sym_BANG] = ACTIONS(5816), + [anon_sym_TILDE] = ACTIONS(5816), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_DASH] = ACTIONS(5816), + [anon_sym_PLUS_PLUS] = ACTIONS(5816), + [anon_sym_sizeof] = ACTIONS(5820), + [sym_number_literal] = ACTIONS(5820), + [sym_char_literal] = ACTIONS(5820), + [sym_string_literal] = ACTIONS(5820), + [sym_identifier] = ACTIONS(5824), [sym_comment] = ACTIONS(121), }, - [1042] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(1045), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), + [1046] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(1049), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47177,202 +47819,203 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(349), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(121), }, - [1043] = { - [aux_sym_for_statement_repeat1] = STATE(1044), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(3760), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [1047] = { + [aux_sym_for_statement_repeat1] = STATE(1048), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(3813), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [1044] = { - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(3909), + [1048] = { + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(3966), [sym_comment] = ACTIONS(121), }, - [1045] = { - [anon_sym_LPAREN] = ACTIONS(5771), - [anon_sym_SEMI] = ACTIONS(5771), - [anon_sym_extern] = ACTIONS(5774), - [anon_sym_LBRACE] = ACTIONS(5771), - [anon_sym_RBRACE] = ACTIONS(5771), - [anon_sym_STAR] = ACTIONS(5771), - [anon_sym_static] = ACTIONS(5774), - [anon_sym_typedef] = ACTIONS(5774), - [anon_sym_auto] = ACTIONS(5774), - [anon_sym_register] = ACTIONS(5774), - [anon_sym_const] = ACTIONS(5774), - [anon_sym_restrict] = ACTIONS(5774), - [anon_sym_volatile] = ACTIONS(5774), - [sym_function_specifier] = ACTIONS(5774), - [anon_sym_unsigned] = ACTIONS(5774), - [anon_sym_long] = ACTIONS(5774), - [anon_sym_short] = ACTIONS(5774), - [anon_sym_enum] = ACTIONS(5774), - [anon_sym_struct] = ACTIONS(5774), - [anon_sym_union] = ACTIONS(5774), - [anon_sym_if] = ACTIONS(5774), - [anon_sym_else] = ACTIONS(5774), - [anon_sym_switch] = ACTIONS(5774), - [anon_sym_case] = ACTIONS(5774), - [anon_sym_default] = ACTIONS(5774), - [anon_sym_while] = ACTIONS(5774), - [anon_sym_do] = ACTIONS(5774), - [anon_sym_for] = ACTIONS(5774), - [anon_sym_return] = ACTIONS(5774), - [anon_sym_break] = ACTIONS(5774), - [anon_sym_continue] = ACTIONS(5774), - [anon_sym_goto] = ACTIONS(5774), - [anon_sym_AMP] = ACTIONS(5771), - [anon_sym_BANG] = ACTIONS(5771), - [anon_sym_TILDE] = ACTIONS(5771), - [anon_sym_PLUS] = ACTIONS(5774), - [anon_sym_DASH] = ACTIONS(5774), - [anon_sym_DASH_DASH] = ACTIONS(5771), - [anon_sym_PLUS_PLUS] = ACTIONS(5771), - [anon_sym_sizeof] = ACTIONS(5774), - [sym_number_literal] = ACTIONS(5774), - [sym_char_literal] = ACTIONS(5774), - [sym_string_literal] = ACTIONS(5774), - [sym_identifier] = ACTIONS(5777), + [1049] = { + [anon_sym_LPAREN] = ACTIONS(5828), + [anon_sym_SEMI] = ACTIONS(5828), + [anon_sym_extern] = ACTIONS(5831), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_STAR] = ACTIONS(5828), + [anon_sym_static] = ACTIONS(5831), + [anon_sym_typedef] = ACTIONS(5831), + [anon_sym_auto] = ACTIONS(5831), + [anon_sym_register] = ACTIONS(5831), + [anon_sym_const] = ACTIONS(5831), + [anon_sym_restrict] = ACTIONS(5831), + [anon_sym_volatile] = ACTIONS(5831), + [sym_function_specifier] = ACTIONS(5831), + [anon_sym_unsigned] = ACTIONS(5831), + [anon_sym_long] = ACTIONS(5831), + [anon_sym_short] = ACTIONS(5831), + [anon_sym_enum] = ACTIONS(5831), + [anon_sym_struct] = ACTIONS(5831), + [anon_sym_union] = ACTIONS(5831), + [anon_sym_if] = ACTIONS(5831), + [anon_sym_else] = ACTIONS(5831), + [anon_sym_switch] = ACTIONS(5831), + [anon_sym_case] = ACTIONS(5831), + [anon_sym_default] = ACTIONS(5831), + [anon_sym_while] = ACTIONS(5831), + [anon_sym_do] = ACTIONS(5831), + [anon_sym_for] = ACTIONS(5831), + [anon_sym_return] = ACTIONS(5831), + [anon_sym_break] = ACTIONS(5831), + [anon_sym_continue] = ACTIONS(5831), + [anon_sym_goto] = ACTIONS(5831), + [anon_sym_AMP] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5828), + [anon_sym_TILDE] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5831), + [anon_sym_DASH] = ACTIONS(5831), + [anon_sym_DASH_DASH] = ACTIONS(5828), + [anon_sym_PLUS_PLUS] = ACTIONS(5828), + [anon_sym_sizeof] = ACTIONS(5831), + [sym_number_literal] = ACTIONS(5831), + [sym_char_literal] = ACTIONS(5831), + [sym_string_literal] = ACTIONS(5831), + [sym_identifier] = ACTIONS(5834), [sym_comment] = ACTIONS(121), }, - [1046] = { - [anon_sym_LPAREN] = ACTIONS(5780), - [anon_sym_SEMI] = ACTIONS(5780), - [anon_sym_extern] = ACTIONS(5784), - [anon_sym_LBRACE] = ACTIONS(5780), - [anon_sym_RBRACE] = ACTIONS(5780), - [anon_sym_STAR] = ACTIONS(5780), - [anon_sym_static] = ACTIONS(5784), - [anon_sym_typedef] = ACTIONS(5784), - [anon_sym_auto] = ACTIONS(5784), - [anon_sym_register] = ACTIONS(5784), - [anon_sym_const] = ACTIONS(5784), - [anon_sym_restrict] = ACTIONS(5784), - [anon_sym_volatile] = ACTIONS(5784), - [sym_function_specifier] = ACTIONS(5784), - [anon_sym_unsigned] = ACTIONS(5784), - [anon_sym_long] = ACTIONS(5784), - [anon_sym_short] = ACTIONS(5784), - [anon_sym_enum] = ACTIONS(5784), - [anon_sym_struct] = ACTIONS(5784), - [anon_sym_union] = ACTIONS(5784), - [anon_sym_if] = ACTIONS(5784), - [anon_sym_else] = ACTIONS(5784), - [anon_sym_switch] = ACTIONS(5784), - [anon_sym_case] = ACTIONS(5784), - [anon_sym_default] = ACTIONS(5784), - [anon_sym_while] = ACTIONS(5784), - [anon_sym_do] = ACTIONS(5784), - [anon_sym_for] = ACTIONS(5784), - [anon_sym_return] = ACTIONS(5784), - [anon_sym_break] = ACTIONS(5784), - [anon_sym_continue] = ACTIONS(5784), - [anon_sym_goto] = ACTIONS(5784), - [anon_sym_AMP] = ACTIONS(5780), - [anon_sym_BANG] = ACTIONS(5780), - [anon_sym_TILDE] = ACTIONS(5780), - [anon_sym_PLUS] = ACTIONS(5784), - [anon_sym_DASH] = ACTIONS(5784), - [anon_sym_DASH_DASH] = ACTIONS(5780), - [anon_sym_PLUS_PLUS] = ACTIONS(5780), - [anon_sym_sizeof] = ACTIONS(5784), - [sym_number_literal] = ACTIONS(5784), - [sym_char_literal] = ACTIONS(5784), - [sym_string_literal] = ACTIONS(5784), - [sym_identifier] = ACTIONS(5788), + [1050] = { + [anon_sym_LPAREN] = ACTIONS(5837), + [anon_sym_SEMI] = ACTIONS(5837), + [anon_sym_extern] = ACTIONS(5841), + [anon_sym_LBRACE] = ACTIONS(5837), + [anon_sym_RBRACE] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_static] = ACTIONS(5841), + [anon_sym_typedef] = ACTIONS(5841), + [anon_sym_auto] = ACTIONS(5841), + [anon_sym_register] = ACTIONS(5841), + [anon_sym_const] = ACTIONS(5841), + [anon_sym_restrict] = ACTIONS(5841), + [anon_sym_volatile] = ACTIONS(5841), + [sym_function_specifier] = ACTIONS(5841), + [anon_sym_unsigned] = ACTIONS(5841), + [anon_sym_long] = ACTIONS(5841), + [anon_sym_short] = ACTIONS(5841), + [anon_sym_enum] = ACTIONS(5841), + [anon_sym_struct] = ACTIONS(5841), + [anon_sym_union] = ACTIONS(5841), + [anon_sym_if] = ACTIONS(5841), + [anon_sym_else] = ACTIONS(5841), + [anon_sym_switch] = ACTIONS(5841), + [anon_sym_case] = ACTIONS(5841), + [anon_sym_default] = ACTIONS(5841), + [anon_sym_while] = ACTIONS(5841), + [anon_sym_do] = ACTIONS(5841), + [anon_sym_for] = ACTIONS(5841), + [anon_sym_return] = ACTIONS(5841), + [anon_sym_break] = ACTIONS(5841), + [anon_sym_continue] = ACTIONS(5841), + [anon_sym_goto] = ACTIONS(5841), + [anon_sym_AMP] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_TILDE] = ACTIONS(5837), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_DASH_DASH] = ACTIONS(5837), + [anon_sym_PLUS_PLUS] = ACTIONS(5837), + [anon_sym_sizeof] = ACTIONS(5841), + [sym_number_literal] = ACTIONS(5841), + [sym_char_literal] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5841), + [sym_identifier] = ACTIONS(5845), [sym_comment] = ACTIONS(121), }, - [1047] = { - [sym_declaration] = STATE(476), - [sym__declaration_specifiers] = STATE(477), - [sym_compound_statement] = STATE(478), + [1051] = { + [sym_declaration] = STATE(480), + [sym__declaration_specifiers] = STATE(481), + [sym_compound_statement] = STATE(482), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(479), + [sym__type_specifier] = STATE(483), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__statement] = STATE(476), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(998), - [sym_comma_expression] = STATE(481), + [sym__statement] = STATE(480), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(1002), + [sym_comma_expression] = STATE(485), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47389,22 +48032,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(341), - [sym__initializer_list_contents] = STATE(342), - [sym_designator] = STATE(343), - [sym__empty_declaration] = STATE(476), + [sym_initializer_list] = STATE(345), + [sym__initializer_list_contents] = STATE(346), + [sym_designator] = STATE(347), + [sym_concatenated_string] = STATE(53), + [sym__empty_declaration] = STATE(480), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), - [aux_sym_compound_statement_repeat1] = STATE(482), + [aux_sym_compound_statement_repeat1] = STATE(486), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [aux_sym__initializer_list_contents_repeat1] = STATE(344), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(1141), + [aux_sym__initializer_list_contents_repeat1] = STATE(348), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_extern] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(5792), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), [anon_sym_auto] = ACTIONS(135), @@ -47419,217 +48063,217 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_sizeof] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(385), - [sym_number_literal] = ACTIONS(331), - [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2319), + [anon_sym_DOT] = ACTIONS(387), + [sym_number_literal] = ACTIONS(331), + [sym_char_literal] = ACTIONS(331), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(1185), [sym_comment] = ACTIONS(121), }, - [1048] = { - [anon_sym_LPAREN] = ACTIONS(5794), - [anon_sym_SEMI] = ACTIONS(5794), - [anon_sym_extern] = ACTIONS(5803), - [anon_sym_LBRACE] = ACTIONS(5794), - [anon_sym_RBRACE] = ACTIONS(5794), - [anon_sym_STAR] = ACTIONS(5794), - [anon_sym_static] = ACTIONS(5803), - [anon_sym_typedef] = ACTIONS(5803), - [anon_sym_auto] = ACTIONS(5803), - [anon_sym_register] = ACTIONS(5803), - [anon_sym_const] = ACTIONS(5803), - [anon_sym_restrict] = ACTIONS(5803), - [anon_sym_volatile] = ACTIONS(5803), - [sym_function_specifier] = ACTIONS(5803), - [anon_sym_unsigned] = ACTIONS(5803), - [anon_sym_long] = ACTIONS(5803), - [anon_sym_short] = ACTIONS(5803), - [anon_sym_enum] = ACTIONS(5803), - [anon_sym_struct] = ACTIONS(5803), - [anon_sym_union] = ACTIONS(5803), - [anon_sym_if] = ACTIONS(5803), - [anon_sym_else] = ACTIONS(5812), - [anon_sym_switch] = ACTIONS(5803), - [anon_sym_case] = ACTIONS(5803), - [anon_sym_default] = ACTIONS(5803), - [anon_sym_while] = ACTIONS(5803), - [anon_sym_do] = ACTIONS(5803), - [anon_sym_for] = ACTIONS(5803), - [anon_sym_return] = ACTIONS(5803), - [anon_sym_break] = ACTIONS(5803), - [anon_sym_continue] = ACTIONS(5803), - [anon_sym_goto] = ACTIONS(5803), - [anon_sym_AMP] = ACTIONS(5794), - [anon_sym_BANG] = ACTIONS(5794), - [anon_sym_TILDE] = ACTIONS(5794), - [anon_sym_PLUS] = ACTIONS(5803), - [anon_sym_DASH] = ACTIONS(5803), - [anon_sym_DASH_DASH] = ACTIONS(5794), - [anon_sym_PLUS_PLUS] = ACTIONS(5794), - [anon_sym_sizeof] = ACTIONS(5803), - [sym_number_literal] = ACTIONS(5803), - [sym_char_literal] = ACTIONS(5803), - [sym_string_literal] = ACTIONS(5803), - [sym_identifier] = ACTIONS(5822), + [1052] = { + [anon_sym_LPAREN] = ACTIONS(5851), + [anon_sym_SEMI] = ACTIONS(5851), + [anon_sym_extern] = ACTIONS(5860), + [anon_sym_LBRACE] = ACTIONS(5851), + [anon_sym_RBRACE] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5851), + [anon_sym_static] = ACTIONS(5860), + [anon_sym_typedef] = ACTIONS(5860), + [anon_sym_auto] = ACTIONS(5860), + [anon_sym_register] = ACTIONS(5860), + [anon_sym_const] = ACTIONS(5860), + [anon_sym_restrict] = ACTIONS(5860), + [anon_sym_volatile] = ACTIONS(5860), + [sym_function_specifier] = ACTIONS(5860), + [anon_sym_unsigned] = ACTIONS(5860), + [anon_sym_long] = ACTIONS(5860), + [anon_sym_short] = ACTIONS(5860), + [anon_sym_enum] = ACTIONS(5860), + [anon_sym_struct] = ACTIONS(5860), + [anon_sym_union] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_else] = ACTIONS(5869), + [anon_sym_switch] = ACTIONS(5860), + [anon_sym_case] = ACTIONS(5860), + [anon_sym_default] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_do] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_break] = ACTIONS(5860), + [anon_sym_continue] = ACTIONS(5860), + [anon_sym_goto] = ACTIONS(5860), + [anon_sym_AMP] = ACTIONS(5851), + [anon_sym_BANG] = ACTIONS(5851), + [anon_sym_TILDE] = ACTIONS(5851), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_DASH_DASH] = ACTIONS(5851), + [anon_sym_PLUS_PLUS] = ACTIONS(5851), + [anon_sym_sizeof] = ACTIONS(5860), + [sym_number_literal] = ACTIONS(5860), + [sym_char_literal] = ACTIONS(5860), + [sym_string_literal] = ACTIONS(5860), + [sym_identifier] = ACTIONS(5879), [sym_comment] = ACTIONS(121), }, - [1049] = { - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_COMMA] = ACTIONS(5831), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(5834), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_STAR_EQ] = ACTIONS(3465), - [anon_sym_SLASH_EQ] = ACTIONS(3465), - [anon_sym_PERCENT_EQ] = ACTIONS(3465), - [anon_sym_PLUS_EQ] = ACTIONS(3465), - [anon_sym_DASH_EQ] = ACTIONS(3465), - [anon_sym_LT_LT_EQ] = ACTIONS(3465), - [anon_sym_GT_GT_EQ] = ACTIONS(3465), - [anon_sym_AMP_EQ] = ACTIONS(3465), - [anon_sym_CARET_EQ] = ACTIONS(3465), - [anon_sym_PIPE_EQ] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3471), - [anon_sym_AMP_AMP] = ACTIONS(3471), - [anon_sym_PIPE] = ACTIONS(3468), - [anon_sym_CARET] = ACTIONS(3468), - [anon_sym_EQ_EQ] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_LT] = ACTIONS(3477), - [anon_sym_GT] = ACTIONS(3477), - [anon_sym_LT_EQ] = ACTIONS(3480), - [anon_sym_GT_EQ] = ACTIONS(3480), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_PERCENT] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DASH_GT] = ACTIONS(3489), + [1053] = { + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(5888), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(3512), + [anon_sym_COLON] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_STAR_EQ] = ACTIONS(3518), + [anon_sym_SLASH_EQ] = ACTIONS(3518), + [anon_sym_PERCENT_EQ] = ACTIONS(3518), + [anon_sym_PLUS_EQ] = ACTIONS(3518), + [anon_sym_DASH_EQ] = ACTIONS(3518), + [anon_sym_LT_LT_EQ] = ACTIONS(3518), + [anon_sym_GT_GT_EQ] = ACTIONS(3518), + [anon_sym_AMP_EQ] = ACTIONS(3518), + [anon_sym_CARET_EQ] = ACTIONS(3518), + [anon_sym_PIPE_EQ] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3524), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym_EQ_EQ] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3530), + [anon_sym_GT] = ACTIONS(3530), + [anon_sym_LT_EQ] = ACTIONS(3533), + [anon_sym_GT_EQ] = ACTIONS(3533), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_SLASH] = ACTIONS(3506), + [anon_sym_PERCENT] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3539), + [anon_sym_PLUS_PLUS] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_DASH_GT] = ACTIONS(3542), [sym_comment] = ACTIONS(121), }, - [1050] = { - [anon_sym_LPAREN] = ACTIONS(5226), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(5226), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_RBRACK] = ACTIONS(919), - [anon_sym_EQ] = ACTIONS(921), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [sym_function_specifier] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(919), - [anon_sym_STAR_EQ] = ACTIONS(919), - [anon_sym_SLASH_EQ] = ACTIONS(919), - [anon_sym_PERCENT_EQ] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(919), - [anon_sym_DASH_EQ] = ACTIONS(919), - [anon_sym_LT_LT_EQ] = ACTIONS(919), - [anon_sym_GT_GT_EQ] = ACTIONS(919), - [anon_sym_AMP_EQ] = ACTIONS(919), - [anon_sym_CARET_EQ] = ACTIONS(919), - [anon_sym_PIPE_EQ] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(5223), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(921), - [anon_sym_CARET] = ACTIONS(921), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_LT_LT] = ACTIONS(921), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_PERCENT] = ACTIONS(921), - [anon_sym_DASH_DASH] = ACTIONS(5226), - [anon_sym_PLUS_PLUS] = ACTIONS(5226), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DASH_GT] = ACTIONS(919), - [sym_number_literal] = ACTIONS(1183), - [sym_char_literal] = ACTIONS(1183), - [sym_string_literal] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), + [1054] = { + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(5283), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(5283), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [sym_function_specifier] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(5280), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(5283), + [anon_sym_PLUS_PLUS] = ACTIONS(5283), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), + [sym_number_literal] = ACTIONS(1201), + [sym_char_literal] = ACTIONS(1201), + [sym_string_literal] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1203), [sym_comment] = ACTIONS(121), }, - [1051] = { - [sym__declarator] = STATE(260), + [1055] = { + [sym__declarator] = STATE(264), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47646,12 +48290,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(1076), + [sym_type_name] = STATE(1080), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(5837), - [anon_sym_STAR] = ACTIONS(5839), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5896), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -47661,77 +48306,77 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(5107), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(5164), [sym_comment] = ACTIONS(121), }, - [1052] = { - [anon_sym_COMMA] = ACTIONS(5841), - [anon_sym_RPAREN] = ACTIONS(5841), + [1056] = { + [anon_sym_COMMA] = ACTIONS(5898), + [anon_sym_RPAREN] = ACTIONS(5898), [sym_comment] = ACTIONS(121), }, - [1053] = { - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_SEMI] = ACTIONS(5846), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_COLON] = ACTIONS(5846), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_PERCENT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [sym_identifier] = ACTIONS(4535), + [1057] = { + [anon_sym_LPAREN] = ACTIONS(5903), + [anon_sym_COMMA] = ACTIONS(5903), + [anon_sym_RPAREN] = ACTIONS(5903), + [anon_sym_SEMI] = ACTIONS(5903), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_LBRACK] = ACTIONS(5903), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_COLON] = ACTIONS(5903), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_PERCENT_EQ] = ACTIONS(995), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_LT_LT_EQ] = ACTIONS(995), + [anon_sym_GT_GT_EQ] = ACTIONS(995), + [anon_sym_AMP_EQ] = ACTIONS(995), + [anon_sym_CARET_EQ] = ACTIONS(995), + [anon_sym_PIPE_EQ] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE_PIPE] = ACTIONS(995), + [anon_sym_AMP_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_DOT] = ACTIONS(995), + [anon_sym_DASH_GT] = ACTIONS(995), + [sym_identifier] = ACTIONS(4592), [sym_comment] = ACTIONS(121), }, - [1054] = { - [sym__declarator] = STATE(932), + [1058] = { + [sym__declarator] = STATE(936), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym__expression] = STATE(1075), + [sym__expression] = STATE(1079), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47748,24 +48393,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(5854), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(5911), [sym_comment] = ACTIONS(121), }, - [1055] = { - [sym__expression] = STATE(1075), + [1059] = { + [sym__expression] = STATE(1079), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47782,24 +48428,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1056] = { - [sym__expression] = STATE(1094), + [1060] = { + [sym__expression] = STATE(1098), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47816,24 +48463,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1057] = { - [sym__expression] = STATE(1093), + [1061] = { + [sym__expression] = STATE(1097), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47850,24 +48498,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1058] = { - [sym__expression] = STATE(1092), + [1062] = { + [sym__expression] = STATE(1096), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47884,24 +48533,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1059] = { - [sym__expression] = STATE(1089), + [1063] = { + [sym__expression] = STATE(1093), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -47918,131 +48568,132 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1060] = { - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5860), - [anon_sym_RPAREN] = ACTIONS(5867), - [anon_sym_SEMI] = ACTIONS(5109), - [anon_sym_RBRACE] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(5872), + [1064] = { + [anon_sym_LPAREN] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5924), + [anon_sym_SEMI] = ACTIONS(5166), + [anon_sym_RBRACE] = ACTIONS(5295), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(5241), + [anon_sym_EQ] = ACTIONS(5929), [anon_sym_COLON] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_identifier] = ACTIONS(198), [sym_comment] = ACTIONS(121), }, - [1061] = { + [1065] = { [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(5876), - [anon_sym_SEMI] = ACTIONS(5876), + [anon_sym_COMMA] = ACTIONS(5933), + [anon_sym_SEMI] = ACTIONS(5933), [anon_sym_LBRACK] = ACTIONS(285), [anon_sym_EQ] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_COLON] = ACTIONS(5938), [sym_comment] = ACTIONS(121), }, - [1062] = { - [anon_sym_COMMA] = ACTIONS(5884), - [anon_sym_SEMI] = ACTIONS(5884), + [1066] = { + [anon_sym_COMMA] = ACTIONS(5941), + [anon_sym_SEMI] = ACTIONS(5941), [sym_comment] = ACTIONS(121), }, - [1063] = { - [anon_sym_COMMA] = ACTIONS(5887), - [anon_sym_RPAREN] = ACTIONS(5887), + [1067] = { + [anon_sym_COMMA] = ACTIONS(5944), + [anon_sym_RPAREN] = ACTIONS(5944), [sym_comment] = ACTIONS(121), }, - [1064] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(5890), - [anon_sym_RPAREN] = ACTIONS(5895), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(5899), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(5901), - [anon_sym_QMARK] = ACTIONS(5903), - [anon_sym_STAR_EQ] = ACTIONS(5905), - [anon_sym_SLASH_EQ] = ACTIONS(5905), - [anon_sym_PERCENT_EQ] = ACTIONS(5905), - [anon_sym_PLUS_EQ] = ACTIONS(5905), - [anon_sym_DASH_EQ] = ACTIONS(5905), - [anon_sym_LT_LT_EQ] = ACTIONS(5905), - [anon_sym_GT_GT_EQ] = ACTIONS(5905), - [anon_sym_AMP_EQ] = ACTIONS(5905), - [anon_sym_CARET_EQ] = ACTIONS(5905), - [anon_sym_PIPE_EQ] = ACTIONS(5905), - [anon_sym_AMP] = ACTIONS(5907), - [anon_sym_PIPE_PIPE] = ACTIONS(5909), - [anon_sym_AMP_AMP] = ACTIONS(5909), - [anon_sym_PIPE] = ACTIONS(5907), - [anon_sym_CARET] = ACTIONS(5907), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_LT] = ACTIONS(5913), - [anon_sym_GT] = ACTIONS(5913), - [anon_sym_LT_EQ] = ACTIONS(5915), - [anon_sym_GT_EQ] = ACTIONS(5915), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_GT_GT] = ACTIONS(5917), - [anon_sym_PLUS] = ACTIONS(5899), - [anon_sym_DASH] = ACTIONS(5899), - [anon_sym_SLASH] = ACTIONS(5899), - [anon_sym_PERCENT] = ACTIONS(5899), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [1068] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(5947), + [anon_sym_RPAREN] = ACTIONS(5952), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(5956), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_QMARK] = ACTIONS(5960), + [anon_sym_STAR_EQ] = ACTIONS(5962), + [anon_sym_SLASH_EQ] = ACTIONS(5962), + [anon_sym_PERCENT_EQ] = ACTIONS(5962), + [anon_sym_PLUS_EQ] = ACTIONS(5962), + [anon_sym_DASH_EQ] = ACTIONS(5962), + [anon_sym_LT_LT_EQ] = ACTIONS(5962), + [anon_sym_GT_GT_EQ] = ACTIONS(5962), + [anon_sym_AMP_EQ] = ACTIONS(5962), + [anon_sym_CARET_EQ] = ACTIONS(5962), + [anon_sym_PIPE_EQ] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5964), + [anon_sym_PIPE_PIPE] = ACTIONS(5966), + [anon_sym_AMP_AMP] = ACTIONS(5966), + [anon_sym_PIPE] = ACTIONS(5964), + [anon_sym_CARET] = ACTIONS(5964), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5972), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5974), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5956), + [anon_sym_PERCENT] = ACTIONS(5956), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [1065] = { - [sym__expression] = STATE(1074), + [1069] = { + [sym__expression] = STATE(1078), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48059,24 +48710,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1066] = { - [sym__expression] = STATE(1084), + [1070] = { + [sym__expression] = STATE(1088), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48093,24 +48745,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1067] = { - [sym__expression] = STATE(1085), + [1071] = { + [sym__expression] = STATE(1089), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48127,24 +48780,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_sizeof] = ACTIONS(449), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_sizeof] = ACTIONS(453), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1068] = { - [sym__expression] = STATE(1082), + [1072] = { + [sym__expression] = STATE(1086), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48161,24 +48815,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1069] = { - [sym__expression] = STATE(1083), + [1073] = { + [sym__expression] = STATE(1087), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48195,24 +48850,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1070] = { - [sym__expression] = STATE(1081), + [1074] = { + [sym__expression] = STATE(1085), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48229,24 +48885,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1071] = { - [sym__expression] = STATE(1080), + [1075] = { + [sym__expression] = STATE(1084), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48263,24 +48920,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1072] = { - [sym__expression] = STATE(1079), + [1076] = { + [sym__expression] = STATE(1083), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48297,31 +48955,32 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1073] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [1077] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48338,12 +48997,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(1076), + [sym_type_name] = STATE(1080), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -48353,112 +49013,112 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [1074] = { - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(461), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(5919), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_EQ] = ACTIONS(5922), - [anon_sym_QMARK] = ACTIONS(5925), - [anon_sym_STAR_EQ] = ACTIONS(5928), - [anon_sym_SLASH_EQ] = ACTIONS(5928), - [anon_sym_PERCENT_EQ] = ACTIONS(5928), - [anon_sym_PLUS_EQ] = ACTIONS(5928), - [anon_sym_DASH_EQ] = ACTIONS(5928), - [anon_sym_LT_LT_EQ] = ACTIONS(5928), - [anon_sym_GT_GT_EQ] = ACTIONS(5928), - [anon_sym_AMP_EQ] = ACTIONS(5928), - [anon_sym_CARET_EQ] = ACTIONS(5928), - [anon_sym_PIPE_EQ] = ACTIONS(5928), - [anon_sym_AMP] = ACTIONS(5931), - [anon_sym_PIPE_PIPE] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5934), - [anon_sym_PIPE] = ACTIONS(5931), - [anon_sym_CARET] = ACTIONS(5931), - [anon_sym_EQ_EQ] = ACTIONS(5937), - [anon_sym_BANG_EQ] = ACTIONS(5937), - [anon_sym_LT] = ACTIONS(5940), - [anon_sym_GT] = ACTIONS(5940), - [anon_sym_LT_EQ] = ACTIONS(5943), - [anon_sym_GT_EQ] = ACTIONS(5943), - [anon_sym_LT_LT] = ACTIONS(5946), - [anon_sym_GT_GT] = ACTIONS(5946), - [anon_sym_PLUS] = ACTIONS(5919), - [anon_sym_DASH] = ACTIONS(5919), - [anon_sym_SLASH] = ACTIONS(5919), - [anon_sym_PERCENT] = ACTIONS(5919), - [anon_sym_DASH_DASH] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3528), - [anon_sym_DOT] = ACTIONS(3531), - [anon_sym_DASH_GT] = ACTIONS(3531), + [1078] = { + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(5976), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_EQ] = ACTIONS(5979), + [anon_sym_QMARK] = ACTIONS(5982), + [anon_sym_STAR_EQ] = ACTIONS(5985), + [anon_sym_SLASH_EQ] = ACTIONS(5985), + [anon_sym_PERCENT_EQ] = ACTIONS(5985), + [anon_sym_PLUS_EQ] = ACTIONS(5985), + [anon_sym_DASH_EQ] = ACTIONS(5985), + [anon_sym_LT_LT_EQ] = ACTIONS(5985), + [anon_sym_GT_GT_EQ] = ACTIONS(5985), + [anon_sym_AMP_EQ] = ACTIONS(5985), + [anon_sym_CARET_EQ] = ACTIONS(5985), + [anon_sym_PIPE_EQ] = ACTIONS(5985), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_PIPE_PIPE] = ACTIONS(5991), + [anon_sym_AMP_AMP] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5988), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_LT] = ACTIONS(5997), + [anon_sym_GT] = ACTIONS(5997), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_LT_LT] = ACTIONS(6003), + [anon_sym_GT_GT] = ACTIONS(6003), + [anon_sym_PLUS] = ACTIONS(5976), + [anon_sym_DASH] = ACTIONS(5976), + [anon_sym_SLASH] = ACTIONS(5976), + [anon_sym_PERCENT] = ACTIONS(5976), + [anon_sym_DASH_DASH] = ACTIONS(3581), + [anon_sym_PLUS_PLUS] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3584), + [anon_sym_DASH_GT] = ACTIONS(3584), [sym_comment] = ACTIONS(121), }, - [1075] = { - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(5949), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_EQ] = ACTIONS(5952), - [anon_sym_QMARK] = ACTIONS(5955), - [anon_sym_STAR_EQ] = ACTIONS(5958), - [anon_sym_SLASH_EQ] = ACTIONS(5958), - [anon_sym_PERCENT_EQ] = ACTIONS(5958), - [anon_sym_PLUS_EQ] = ACTIONS(5958), - [anon_sym_DASH_EQ] = ACTIONS(5958), - [anon_sym_LT_LT_EQ] = ACTIONS(5958), - [anon_sym_GT_GT_EQ] = ACTIONS(5958), - [anon_sym_AMP_EQ] = ACTIONS(5958), - [anon_sym_CARET_EQ] = ACTIONS(5958), - [anon_sym_PIPE_EQ] = ACTIONS(5958), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_PIPE_PIPE] = ACTIONS(5964), - [anon_sym_AMP_AMP] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5961), - [anon_sym_CARET] = ACTIONS(5961), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_LT] = ACTIONS(5970), - [anon_sym_GT] = ACTIONS(5970), - [anon_sym_LT_EQ] = ACTIONS(5973), - [anon_sym_GT_EQ] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5976), - [anon_sym_GT_GT] = ACTIONS(5976), - [anon_sym_PLUS] = ACTIONS(5949), - [anon_sym_DASH] = ACTIONS(5949), - [anon_sym_SLASH] = ACTIONS(5949), - [anon_sym_PERCENT] = ACTIONS(5949), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_DASH_GT] = ACTIONS(3699), + [1079] = { + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(6009), + [anon_sym_QMARK] = ACTIONS(6012), + [anon_sym_STAR_EQ] = ACTIONS(6015), + [anon_sym_SLASH_EQ] = ACTIONS(6015), + [anon_sym_PERCENT_EQ] = ACTIONS(6015), + [anon_sym_PLUS_EQ] = ACTIONS(6015), + [anon_sym_DASH_EQ] = ACTIONS(6015), + [anon_sym_LT_LT_EQ] = ACTIONS(6015), + [anon_sym_GT_GT_EQ] = ACTIONS(6015), + [anon_sym_AMP_EQ] = ACTIONS(6015), + [anon_sym_CARET_EQ] = ACTIONS(6015), + [anon_sym_PIPE_EQ] = ACTIONS(6015), + [anon_sym_AMP] = ACTIONS(6018), + [anon_sym_PIPE_PIPE] = ACTIONS(6021), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6018), + [anon_sym_CARET] = ACTIONS(6018), + [anon_sym_EQ_EQ] = ACTIONS(6024), + [anon_sym_BANG_EQ] = ACTIONS(6024), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_LT_EQ] = ACTIONS(6030), + [anon_sym_GT_EQ] = ACTIONS(6030), + [anon_sym_LT_LT] = ACTIONS(6033), + [anon_sym_GT_GT] = ACTIONS(6033), + [anon_sym_PLUS] = ACTIONS(6006), + [anon_sym_DASH] = ACTIONS(6006), + [anon_sym_SLASH] = ACTIONS(6006), + [anon_sym_PERCENT] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(3749), + [anon_sym_PLUS_PLUS] = ACTIONS(3749), + [anon_sym_DOT] = ACTIONS(3752), + [anon_sym_DASH_GT] = ACTIONS(3752), [sym_comment] = ACTIONS(121), }, - [1076] = { - [anon_sym_RPAREN] = ACTIONS(5979), + [1080] = { + [anon_sym_RPAREN] = ACTIONS(6036), [sym_comment] = ACTIONS(121), }, - [1077] = { - [sym__expression] = STATE(1078), + [1081] = { + [sym__expression] = STATE(1082), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48475,367 +49135,368 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_comment] = ACTIONS(121), - }, - [1078] = { - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_EQ] = ACTIONS(5984), - [anon_sym_QMARK] = ACTIONS(5987), - [anon_sym_STAR_EQ] = ACTIONS(5990), - [anon_sym_SLASH_EQ] = ACTIONS(5990), - [anon_sym_PERCENT_EQ] = ACTIONS(5990), - [anon_sym_PLUS_EQ] = ACTIONS(5990), - [anon_sym_DASH_EQ] = ACTIONS(5990), - [anon_sym_LT_LT_EQ] = ACTIONS(5990), - [anon_sym_GT_GT_EQ] = ACTIONS(5990), - [anon_sym_AMP_EQ] = ACTIONS(5990), - [anon_sym_CARET_EQ] = ACTIONS(5990), - [anon_sym_PIPE_EQ] = ACTIONS(5990), - [anon_sym_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5996), - [anon_sym_AMP_AMP] = ACTIONS(5996), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_CARET] = ACTIONS(5993), - [anon_sym_EQ_EQ] = ACTIONS(5999), - [anon_sym_BANG_EQ] = ACTIONS(5999), - [anon_sym_LT] = ACTIONS(6002), - [anon_sym_GT] = ACTIONS(6002), - [anon_sym_LT_EQ] = ACTIONS(6005), - [anon_sym_GT_EQ] = ACTIONS(6005), - [anon_sym_LT_LT] = ACTIONS(6008), - [anon_sym_GT_GT] = ACTIONS(6008), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5981), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_DASH_DASH] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DASH_GT] = ACTIONS(3489), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1079] = { - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_EQ] = ACTIONS(6014), - [anon_sym_QMARK] = ACTIONS(6017), - [anon_sym_STAR_EQ] = ACTIONS(6020), - [anon_sym_SLASH_EQ] = ACTIONS(6020), - [anon_sym_PERCENT_EQ] = ACTIONS(6020), - [anon_sym_PLUS_EQ] = ACTIONS(6020), - [anon_sym_DASH_EQ] = ACTIONS(6020), - [anon_sym_LT_LT_EQ] = ACTIONS(6020), - [anon_sym_GT_GT_EQ] = ACTIONS(6020), - [anon_sym_AMP_EQ] = ACTIONS(6020), - [anon_sym_CARET_EQ] = ACTIONS(6020), - [anon_sym_PIPE_EQ] = ACTIONS(6020), - [anon_sym_AMP] = ACTIONS(6023), - [anon_sym_PIPE_PIPE] = ACTIONS(6026), - [anon_sym_AMP_AMP] = ACTIONS(6026), - [anon_sym_PIPE] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_EQ_EQ] = ACTIONS(6029), - [anon_sym_BANG_EQ] = ACTIONS(6029), - [anon_sym_LT] = ACTIONS(6032), - [anon_sym_GT] = ACTIONS(6032), - [anon_sym_LT_EQ] = ACTIONS(6035), - [anon_sym_GT_EQ] = ACTIONS(6035), - [anon_sym_LT_LT] = ACTIONS(6038), - [anon_sym_GT_GT] = ACTIONS(6038), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_PERCENT] = ACTIONS(6011), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(4011), + [1082] = { + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(6038), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_EQ] = ACTIONS(6041), + [anon_sym_QMARK] = ACTIONS(6044), + [anon_sym_STAR_EQ] = ACTIONS(6047), + [anon_sym_SLASH_EQ] = ACTIONS(6047), + [anon_sym_PERCENT_EQ] = ACTIONS(6047), + [anon_sym_PLUS_EQ] = ACTIONS(6047), + [anon_sym_DASH_EQ] = ACTIONS(6047), + [anon_sym_LT_LT_EQ] = ACTIONS(6047), + [anon_sym_GT_GT_EQ] = ACTIONS(6047), + [anon_sym_AMP_EQ] = ACTIONS(6047), + [anon_sym_CARET_EQ] = ACTIONS(6047), + [anon_sym_PIPE_EQ] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6050), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6050), + [anon_sym_CARET] = ACTIONS(6050), + [anon_sym_EQ_EQ] = ACTIONS(6056), + [anon_sym_BANG_EQ] = ACTIONS(6056), + [anon_sym_LT] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6059), + [anon_sym_LT_EQ] = ACTIONS(6062), + [anon_sym_GT_EQ] = ACTIONS(6062), + [anon_sym_LT_LT] = ACTIONS(6065), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_PLUS] = ACTIONS(6038), + [anon_sym_DASH] = ACTIONS(6038), + [anon_sym_SLASH] = ACTIONS(6038), + [anon_sym_PERCENT] = ACTIONS(6038), + [anon_sym_DASH_DASH] = ACTIONS(3539), + [anon_sym_PLUS_PLUS] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_DASH_GT] = ACTIONS(3542), [sym_comment] = ACTIONS(121), }, - [1080] = { - [anon_sym_LPAREN] = ACTIONS(4014), + [1083] = { + [anon_sym_LPAREN] = ACTIONS(4029), [anon_sym_COMMA] = ACTIONS(469), [anon_sym_RPAREN] = ACTIONS(469), [anon_sym_SEMI] = ACTIONS(469), [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_EQ] = ACTIONS(6044), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_STAR_EQ] = ACTIONS(6050), - [anon_sym_SLASH_EQ] = ACTIONS(6050), - [anon_sym_PERCENT_EQ] = ACTIONS(6050), - [anon_sym_PLUS_EQ] = ACTIONS(6050), - [anon_sym_DASH_EQ] = ACTIONS(6050), - [anon_sym_LT_LT_EQ] = ACTIONS(6050), - [anon_sym_GT_GT_EQ] = ACTIONS(6050), - [anon_sym_AMP_EQ] = ACTIONS(6050), - [anon_sym_CARET_EQ] = ACTIONS(6050), - [anon_sym_PIPE_EQ] = ACTIONS(6050), - [anon_sym_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6056), - [anon_sym_AMP_AMP] = ACTIONS(6056), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_CARET] = ACTIONS(6053), - [anon_sym_EQ_EQ] = ACTIONS(6059), - [anon_sym_BANG_EQ] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6062), - [anon_sym_GT] = ACTIONS(6062), - [anon_sym_LT_EQ] = ACTIONS(6065), - [anon_sym_GT_EQ] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6068), - [anon_sym_GT_GT] = ACTIONS(6068), - [anon_sym_PLUS] = ACTIONS(6041), - [anon_sym_DASH] = ACTIONS(6041), - [anon_sym_SLASH] = ACTIONS(6041), - [anon_sym_PERCENT] = ACTIONS(6041), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_DOT] = ACTIONS(4053), - [anon_sym_DASH_GT] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(6068), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_QMARK] = ACTIONS(6074), + [anon_sym_STAR_EQ] = ACTIONS(6077), + [anon_sym_SLASH_EQ] = ACTIONS(6077), + [anon_sym_PERCENT_EQ] = ACTIONS(6077), + [anon_sym_PLUS_EQ] = ACTIONS(6077), + [anon_sym_DASH_EQ] = ACTIONS(6077), + [anon_sym_LT_LT_EQ] = ACTIONS(6077), + [anon_sym_GT_GT_EQ] = ACTIONS(6077), + [anon_sym_AMP_EQ] = ACTIONS(6077), + [anon_sym_CARET_EQ] = ACTIONS(6077), + [anon_sym_PIPE_EQ] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6080), + [anon_sym_PIPE_PIPE] = ACTIONS(6083), + [anon_sym_AMP_AMP] = ACTIONS(6083), + [anon_sym_PIPE] = ACTIONS(6080), + [anon_sym_CARET] = ACTIONS(6080), + [anon_sym_EQ_EQ] = ACTIONS(6086), + [anon_sym_BANG_EQ] = ACTIONS(6086), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(6092), + [anon_sym_GT_EQ] = ACTIONS(6092), + [anon_sym_LT_LT] = ACTIONS(6095), + [anon_sym_GT_GT] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6068), + [anon_sym_DASH] = ACTIONS(6068), + [anon_sym_SLASH] = ACTIONS(6068), + [anon_sym_PERCENT] = ACTIONS(6068), + [anon_sym_DASH_DASH] = ACTIONS(4065), + [anon_sym_PLUS_PLUS] = ACTIONS(4065), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_DASH_GT] = ACTIONS(4068), [sym_comment] = ACTIONS(121), }, - [1081] = { - [anon_sym_LPAREN] = ACTIONS(4056), + [1084] = { + [anon_sym_LPAREN] = ACTIONS(4071), [anon_sym_COMMA] = ACTIONS(473), [anon_sym_RPAREN] = ACTIONS(473), [anon_sym_SEMI] = ACTIONS(473), [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(6071), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_EQ] = ACTIONS(6074), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_STAR_EQ] = ACTIONS(6080), - [anon_sym_SLASH_EQ] = ACTIONS(6080), - [anon_sym_PERCENT_EQ] = ACTIONS(6080), - [anon_sym_PLUS_EQ] = ACTIONS(6080), - [anon_sym_DASH_EQ] = ACTIONS(6080), - [anon_sym_LT_LT_EQ] = ACTIONS(6080), - [anon_sym_GT_GT_EQ] = ACTIONS(6080), - [anon_sym_AMP_EQ] = ACTIONS(6080), - [anon_sym_CARET_EQ] = ACTIONS(6080), - [anon_sym_PIPE_EQ] = ACTIONS(6080), - [anon_sym_AMP] = ACTIONS(6083), - [anon_sym_PIPE_PIPE] = ACTIONS(6086), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE] = ACTIONS(6083), - [anon_sym_CARET] = ACTIONS(6083), - [anon_sym_EQ_EQ] = ACTIONS(6089), - [anon_sym_BANG_EQ] = ACTIONS(6089), - [anon_sym_LT] = ACTIONS(6092), - [anon_sym_GT] = ACTIONS(6092), - [anon_sym_LT_EQ] = ACTIONS(6095), - [anon_sym_GT_EQ] = ACTIONS(6095), - [anon_sym_LT_LT] = ACTIONS(6098), - [anon_sym_GT_GT] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6071), - [anon_sym_DASH] = ACTIONS(6071), - [anon_sym_SLASH] = ACTIONS(6071), - [anon_sym_PERCENT] = ACTIONS(6071), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4095), - [anon_sym_DASH_GT] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6101), + [anon_sym_QMARK] = ACTIONS(6104), + [anon_sym_STAR_EQ] = ACTIONS(6107), + [anon_sym_SLASH_EQ] = ACTIONS(6107), + [anon_sym_PERCENT_EQ] = ACTIONS(6107), + [anon_sym_PLUS_EQ] = ACTIONS(6107), + [anon_sym_DASH_EQ] = ACTIONS(6107), + [anon_sym_LT_LT_EQ] = ACTIONS(6107), + [anon_sym_GT_GT_EQ] = ACTIONS(6107), + [anon_sym_AMP_EQ] = ACTIONS(6107), + [anon_sym_CARET_EQ] = ACTIONS(6107), + [anon_sym_PIPE_EQ] = ACTIONS(6107), + [anon_sym_AMP] = ACTIONS(6110), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6110), + [anon_sym_CARET] = ACTIONS(6110), + [anon_sym_EQ_EQ] = ACTIONS(6116), + [anon_sym_BANG_EQ] = ACTIONS(6116), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_LT_EQ] = ACTIONS(6122), + [anon_sym_GT_EQ] = ACTIONS(6122), + [anon_sym_LT_LT] = ACTIONS(6125), + [anon_sym_GT_GT] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6098), + [anon_sym_DASH] = ACTIONS(6098), + [anon_sym_SLASH] = ACTIONS(6098), + [anon_sym_PERCENT] = ACTIONS(6098), + [anon_sym_DASH_DASH] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(4107), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4110), [sym_comment] = ACTIONS(121), }, - [1082] = { - [anon_sym_LPAREN] = ACTIONS(3534), + [1085] = { + [anon_sym_LPAREN] = ACTIONS(4113), [anon_sym_COMMA] = ACTIONS(477), [anon_sym_RPAREN] = ACTIONS(477), [anon_sym_SEMI] = ACTIONS(477), [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(6101), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_EQ] = ACTIONS(6104), - [anon_sym_QMARK] = ACTIONS(6107), - [anon_sym_STAR_EQ] = ACTIONS(6110), - [anon_sym_SLASH_EQ] = ACTIONS(6110), - [anon_sym_PERCENT_EQ] = ACTIONS(6110), - [anon_sym_PLUS_EQ] = ACTIONS(6110), - [anon_sym_DASH_EQ] = ACTIONS(6110), - [anon_sym_LT_LT_EQ] = ACTIONS(6110), - [anon_sym_GT_GT_EQ] = ACTIONS(6110), - [anon_sym_AMP_EQ] = ACTIONS(6110), - [anon_sym_CARET_EQ] = ACTIONS(6110), - [anon_sym_PIPE_EQ] = ACTIONS(6110), - [anon_sym_AMP] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6116), - [anon_sym_AMP_AMP] = ACTIONS(6116), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_EQ_EQ] = ACTIONS(6119), - [anon_sym_BANG_EQ] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6122), - [anon_sym_GT] = ACTIONS(6122), - [anon_sym_LT_EQ] = ACTIONS(6125), - [anon_sym_GT_EQ] = ACTIONS(6125), - [anon_sym_LT_LT] = ACTIONS(6128), - [anon_sym_GT_GT] = ACTIONS(6128), - [anon_sym_PLUS] = ACTIONS(6101), - [anon_sym_DASH] = ACTIONS(6101), - [anon_sym_SLASH] = ACTIONS(6101), - [anon_sym_PERCENT] = ACTIONS(6101), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_DASH_GT] = ACTIONS(3573), + [anon_sym_STAR] = ACTIONS(6128), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_EQ] = ACTIONS(6131), + [anon_sym_QMARK] = ACTIONS(6134), + [anon_sym_STAR_EQ] = ACTIONS(6137), + [anon_sym_SLASH_EQ] = ACTIONS(6137), + [anon_sym_PERCENT_EQ] = ACTIONS(6137), + [anon_sym_PLUS_EQ] = ACTIONS(6137), + [anon_sym_DASH_EQ] = ACTIONS(6137), + [anon_sym_LT_LT_EQ] = ACTIONS(6137), + [anon_sym_GT_GT_EQ] = ACTIONS(6137), + [anon_sym_AMP_EQ] = ACTIONS(6137), + [anon_sym_CARET_EQ] = ACTIONS(6137), + [anon_sym_PIPE_EQ] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6140), + [anon_sym_PIPE_PIPE] = ACTIONS(6143), + [anon_sym_AMP_AMP] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6140), + [anon_sym_CARET] = ACTIONS(6140), + [anon_sym_EQ_EQ] = ACTIONS(6146), + [anon_sym_BANG_EQ] = ACTIONS(6146), + [anon_sym_LT] = ACTIONS(6149), + [anon_sym_GT] = ACTIONS(6149), + [anon_sym_LT_EQ] = ACTIONS(6152), + [anon_sym_GT_EQ] = ACTIONS(6152), + [anon_sym_LT_LT] = ACTIONS(6155), + [anon_sym_GT_GT] = ACTIONS(6155), + [anon_sym_PLUS] = ACTIONS(6128), + [anon_sym_DASH] = ACTIONS(6128), + [anon_sym_SLASH] = ACTIONS(6128), + [anon_sym_PERCENT] = ACTIONS(6128), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), [sym_comment] = ACTIONS(121), }, - [1083] = { - [anon_sym_LPAREN] = ACTIONS(4128), + [1086] = { + [anon_sym_LPAREN] = ACTIONS(3587), [anon_sym_COMMA] = ACTIONS(481), [anon_sym_RPAREN] = ACTIONS(481), [anon_sym_SEMI] = ACTIONS(481), [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(6134), - [anon_sym_QMARK] = ACTIONS(6137), - [anon_sym_STAR_EQ] = ACTIONS(6140), - [anon_sym_SLASH_EQ] = ACTIONS(6140), - [anon_sym_PERCENT_EQ] = ACTIONS(6140), - [anon_sym_PLUS_EQ] = ACTIONS(6140), - [anon_sym_DASH_EQ] = ACTIONS(6140), - [anon_sym_LT_LT_EQ] = ACTIONS(6140), - [anon_sym_GT_GT_EQ] = ACTIONS(6140), - [anon_sym_AMP_EQ] = ACTIONS(6140), - [anon_sym_CARET_EQ] = ACTIONS(6140), - [anon_sym_PIPE_EQ] = ACTIONS(6140), - [anon_sym_AMP] = ACTIONS(6143), - [anon_sym_PIPE_PIPE] = ACTIONS(6146), - [anon_sym_AMP_AMP] = ACTIONS(6146), - [anon_sym_PIPE] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6149), - [anon_sym_BANG_EQ] = ACTIONS(6149), - [anon_sym_LT] = ACTIONS(6152), - [anon_sym_GT] = ACTIONS(6152), - [anon_sym_LT_EQ] = ACTIONS(6155), - [anon_sym_GT_EQ] = ACTIONS(6155), - [anon_sym_LT_LT] = ACTIONS(6158), - [anon_sym_GT_GT] = ACTIONS(6158), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6131), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4167), - [anon_sym_DASH_GT] = ACTIONS(4167), + [anon_sym_STAR] = ACTIONS(6158), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_EQ] = ACTIONS(6161), + [anon_sym_QMARK] = ACTIONS(6164), + [anon_sym_STAR_EQ] = ACTIONS(6167), + [anon_sym_SLASH_EQ] = ACTIONS(6167), + [anon_sym_PERCENT_EQ] = ACTIONS(6167), + [anon_sym_PLUS_EQ] = ACTIONS(6167), + [anon_sym_DASH_EQ] = ACTIONS(6167), + [anon_sym_LT_LT_EQ] = ACTIONS(6167), + [anon_sym_GT_GT_EQ] = ACTIONS(6167), + [anon_sym_AMP_EQ] = ACTIONS(6167), + [anon_sym_CARET_EQ] = ACTIONS(6167), + [anon_sym_PIPE_EQ] = ACTIONS(6167), + [anon_sym_AMP] = ACTIONS(6170), + [anon_sym_PIPE_PIPE] = ACTIONS(6173), + [anon_sym_AMP_AMP] = ACTIONS(6173), + [anon_sym_PIPE] = ACTIONS(6170), + [anon_sym_CARET] = ACTIONS(6170), + [anon_sym_EQ_EQ] = ACTIONS(6176), + [anon_sym_BANG_EQ] = ACTIONS(6176), + [anon_sym_LT] = ACTIONS(6179), + [anon_sym_GT] = ACTIONS(6179), + [anon_sym_LT_EQ] = ACTIONS(6182), + [anon_sym_GT_EQ] = ACTIONS(6182), + [anon_sym_LT_LT] = ACTIONS(6185), + [anon_sym_GT_GT] = ACTIONS(6185), + [anon_sym_PLUS] = ACTIONS(6158), + [anon_sym_DASH] = ACTIONS(6158), + [anon_sym_SLASH] = ACTIONS(6158), + [anon_sym_PERCENT] = ACTIONS(6158), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_DOT] = ACTIONS(3626), + [anon_sym_DASH_GT] = ACTIONS(3626), [sym_comment] = ACTIONS(121), }, - [1084] = { - [anon_sym_LPAREN] = ACTIONS(3576), + [1087] = { + [anon_sym_LPAREN] = ACTIONS(4185), [anon_sym_COMMA] = ACTIONS(485), [anon_sym_RPAREN] = ACTIONS(485), [anon_sym_SEMI] = ACTIONS(485), [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(6164), - [anon_sym_QMARK] = ACTIONS(6167), - [anon_sym_STAR_EQ] = ACTIONS(6170), - [anon_sym_SLASH_EQ] = ACTIONS(6170), - [anon_sym_PERCENT_EQ] = ACTIONS(6170), - [anon_sym_PLUS_EQ] = ACTIONS(6170), - [anon_sym_DASH_EQ] = ACTIONS(6170), - [anon_sym_LT_LT_EQ] = ACTIONS(6170), - [anon_sym_GT_GT_EQ] = ACTIONS(6170), - [anon_sym_AMP_EQ] = ACTIONS(6170), - [anon_sym_CARET_EQ] = ACTIONS(6170), - [anon_sym_PIPE_EQ] = ACTIONS(6170), - [anon_sym_AMP] = ACTIONS(6173), - [anon_sym_PIPE_PIPE] = ACTIONS(6176), - [anon_sym_AMP_AMP] = ACTIONS(6176), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_CARET] = ACTIONS(6173), - [anon_sym_EQ_EQ] = ACTIONS(6179), - [anon_sym_BANG_EQ] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6182), - [anon_sym_GT] = ACTIONS(6182), - [anon_sym_LT_EQ] = ACTIONS(6185), - [anon_sym_GT_EQ] = ACTIONS(6185), - [anon_sym_LT_LT] = ACTIONS(6188), - [anon_sym_GT_GT] = ACTIONS(6188), - [anon_sym_PLUS] = ACTIONS(6161), - [anon_sym_DASH] = ACTIONS(6161), - [anon_sym_SLASH] = ACTIONS(6161), - [anon_sym_PERCENT] = ACTIONS(6161), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3615), - [anon_sym_DASH_GT] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(6188), + [anon_sym_LBRACK] = ACTIONS(4191), + [anon_sym_EQ] = ACTIONS(6191), + [anon_sym_QMARK] = ACTIONS(6194), + [anon_sym_STAR_EQ] = ACTIONS(6197), + [anon_sym_SLASH_EQ] = ACTIONS(6197), + [anon_sym_PERCENT_EQ] = ACTIONS(6197), + [anon_sym_PLUS_EQ] = ACTIONS(6197), + [anon_sym_DASH_EQ] = ACTIONS(6197), + [anon_sym_LT_LT_EQ] = ACTIONS(6197), + [anon_sym_GT_GT_EQ] = ACTIONS(6197), + [anon_sym_AMP_EQ] = ACTIONS(6197), + [anon_sym_CARET_EQ] = ACTIONS(6197), + [anon_sym_PIPE_EQ] = ACTIONS(6197), + [anon_sym_AMP] = ACTIONS(6200), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6203), + [anon_sym_PIPE] = ACTIONS(6200), + [anon_sym_CARET] = ACTIONS(6200), + [anon_sym_EQ_EQ] = ACTIONS(6206), + [anon_sym_BANG_EQ] = ACTIONS(6206), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6212), + [anon_sym_LT_LT] = ACTIONS(6215), + [anon_sym_GT_GT] = ACTIONS(6215), + [anon_sym_PLUS] = ACTIONS(6188), + [anon_sym_DASH] = ACTIONS(6188), + [anon_sym_SLASH] = ACTIONS(6188), + [anon_sym_PERCENT] = ACTIONS(6188), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4224), [sym_comment] = ACTIONS(121), }, - [1085] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(6191), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [1088] = { + [anon_sym_LPAREN] = ACTIONS(3629), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(6218), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(6221), + [anon_sym_QMARK] = ACTIONS(6224), + [anon_sym_STAR_EQ] = ACTIONS(6227), + [anon_sym_SLASH_EQ] = ACTIONS(6227), + [anon_sym_PERCENT_EQ] = ACTIONS(6227), + [anon_sym_PLUS_EQ] = ACTIONS(6227), + [anon_sym_DASH_EQ] = ACTIONS(6227), + [anon_sym_LT_LT_EQ] = ACTIONS(6227), + [anon_sym_GT_GT_EQ] = ACTIONS(6227), + [anon_sym_AMP_EQ] = ACTIONS(6227), + [anon_sym_CARET_EQ] = ACTIONS(6227), + [anon_sym_PIPE_EQ] = ACTIONS(6227), + [anon_sym_AMP] = ACTIONS(6230), + [anon_sym_PIPE_PIPE] = ACTIONS(6233), + [anon_sym_AMP_AMP] = ACTIONS(6233), + [anon_sym_PIPE] = ACTIONS(6230), + [anon_sym_CARET] = ACTIONS(6230), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(6239), + [anon_sym_GT] = ACTIONS(6239), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6245), + [anon_sym_GT_GT] = ACTIONS(6245), + [anon_sym_PLUS] = ACTIONS(6218), + [anon_sym_DASH] = ACTIONS(6218), + [anon_sym_SLASH] = ACTIONS(6218), + [anon_sym_PERCENT] = ACTIONS(6218), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), [sym_comment] = ACTIONS(121), }, - [1086] = { - [sym__expression] = STATE(1087), + [1089] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(6248), + [anon_sym_QMARK] = ACTIONS(499), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_LT_LT_EQ] = ACTIONS(501), + [anon_sym_GT_GT_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [sym_comment] = ACTIONS(121), + }, + [1090] = { + [sym__expression] = STATE(1091), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48852,74 +49513,75 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1838), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1856), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1087] = { - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(3871), - [anon_sym_EQ] = ACTIONS(6196), - [anon_sym_QMARK] = ACTIONS(6199), - [anon_sym_STAR_EQ] = ACTIONS(6202), - [anon_sym_SLASH_EQ] = ACTIONS(6202), - [anon_sym_PERCENT_EQ] = ACTIONS(6202), - [anon_sym_PLUS_EQ] = ACTIONS(6202), - [anon_sym_DASH_EQ] = ACTIONS(6202), - [anon_sym_LT_LT_EQ] = ACTIONS(6202), - [anon_sym_GT_GT_EQ] = ACTIONS(6202), - [anon_sym_AMP_EQ] = ACTIONS(6202), - [anon_sym_CARET_EQ] = ACTIONS(6202), - [anon_sym_PIPE_EQ] = ACTIONS(6202), - [anon_sym_AMP] = ACTIONS(6205), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_CARET] = ACTIONS(6205), - [anon_sym_EQ_EQ] = ACTIONS(6211), - [anon_sym_BANG_EQ] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6214), - [anon_sym_GT] = ACTIONS(6214), - [anon_sym_LT_EQ] = ACTIONS(6217), - [anon_sym_GT_EQ] = ACTIONS(6217), - [anon_sym_LT_LT] = ACTIONS(6220), - [anon_sym_GT_GT] = ACTIONS(6220), - [anon_sym_PLUS] = ACTIONS(6193), - [anon_sym_DASH] = ACTIONS(6193), - [anon_sym_SLASH] = ACTIONS(6193), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3904), - [anon_sym_DASH_GT] = ACTIONS(3904), + [1091] = { + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_EQ] = ACTIONS(6253), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6259), + [anon_sym_SLASH_EQ] = ACTIONS(6259), + [anon_sym_PERCENT_EQ] = ACTIONS(6259), + [anon_sym_PLUS_EQ] = ACTIONS(6259), + [anon_sym_DASH_EQ] = ACTIONS(6259), + [anon_sym_LT_LT_EQ] = ACTIONS(6259), + [anon_sym_GT_GT_EQ] = ACTIONS(6259), + [anon_sym_AMP_EQ] = ACTIONS(6259), + [anon_sym_CARET_EQ] = ACTIONS(6259), + [anon_sym_PIPE_EQ] = ACTIONS(6259), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6265), + [anon_sym_AMP_AMP] = ACTIONS(6265), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6268), + [anon_sym_BANG_EQ] = ACTIONS(6268), + [anon_sym_LT] = ACTIONS(6271), + [anon_sym_GT] = ACTIONS(6271), + [anon_sym_LT_EQ] = ACTIONS(6274), + [anon_sym_GT_EQ] = ACTIONS(6274), + [anon_sym_LT_LT] = ACTIONS(6277), + [anon_sym_GT_GT] = ACTIONS(6277), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_DASH_DASH] = ACTIONS(3958), + [anon_sym_PLUS_PLUS] = ACTIONS(3958), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), [sym_comment] = ACTIONS(121), }, - [1088] = { - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [1092] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -48936,12 +49598,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(1090), + [sym_type_name] = STATE(1094), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -48951,69 +49614,69 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(365), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(367), [sym_comment] = ACTIONS(121), }, - [1089] = { - [anon_sym_LPAREN] = ACTIONS(4241), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_EQ] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6229), - [anon_sym_STAR_EQ] = ACTIONS(6232), - [anon_sym_SLASH_EQ] = ACTIONS(6232), - [anon_sym_PERCENT_EQ] = ACTIONS(6232), - [anon_sym_PLUS_EQ] = ACTIONS(6232), - [anon_sym_DASH_EQ] = ACTIONS(6232), - [anon_sym_LT_LT_EQ] = ACTIONS(6232), - [anon_sym_GT_GT_EQ] = ACTIONS(6232), - [anon_sym_AMP_EQ] = ACTIONS(6232), - [anon_sym_CARET_EQ] = ACTIONS(6232), - [anon_sym_PIPE_EQ] = ACTIONS(6232), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6238), - [anon_sym_AMP_AMP] = ACTIONS(6238), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_EQ_EQ] = ACTIONS(6241), - [anon_sym_BANG_EQ] = ACTIONS(6241), - [anon_sym_LT] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6247), - [anon_sym_GT_EQ] = ACTIONS(6247), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_PERCENT] = ACTIONS(6223), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_PLUS_PLUS] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4280), - [anon_sym_DASH_GT] = ACTIONS(4280), + [1093] = { + [anon_sym_LPAREN] = ACTIONS(4298), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(6280), + [anon_sym_LBRACK] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(6283), + [anon_sym_QMARK] = ACTIONS(6286), + [anon_sym_STAR_EQ] = ACTIONS(6289), + [anon_sym_SLASH_EQ] = ACTIONS(6289), + [anon_sym_PERCENT_EQ] = ACTIONS(6289), + [anon_sym_PLUS_EQ] = ACTIONS(6289), + [anon_sym_DASH_EQ] = ACTIONS(6289), + [anon_sym_LT_LT_EQ] = ACTIONS(6289), + [anon_sym_GT_GT_EQ] = ACTIONS(6289), + [anon_sym_AMP_EQ] = ACTIONS(6289), + [anon_sym_CARET_EQ] = ACTIONS(6289), + [anon_sym_PIPE_EQ] = ACTIONS(6289), + [anon_sym_AMP] = ACTIONS(6292), + [anon_sym_PIPE_PIPE] = ACTIONS(6295), + [anon_sym_AMP_AMP] = ACTIONS(6295), + [anon_sym_PIPE] = ACTIONS(6292), + [anon_sym_CARET] = ACTIONS(6292), + [anon_sym_EQ_EQ] = ACTIONS(6298), + [anon_sym_BANG_EQ] = ACTIONS(6298), + [anon_sym_LT] = ACTIONS(6301), + [anon_sym_GT] = ACTIONS(6301), + [anon_sym_LT_EQ] = ACTIONS(6304), + [anon_sym_GT_EQ] = ACTIONS(6304), + [anon_sym_LT_LT] = ACTIONS(6307), + [anon_sym_GT_GT] = ACTIONS(6307), + [anon_sym_PLUS] = ACTIONS(6280), + [anon_sym_DASH] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6280), + [anon_sym_PERCENT] = ACTIONS(6280), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DOT] = ACTIONS(4337), + [anon_sym_DASH_GT] = ACTIONS(4337), [sym_comment] = ACTIONS(121), }, - [1090] = { - [anon_sym_RPAREN] = ACTIONS(6253), + [1094] = { + [anon_sym_RPAREN] = ACTIONS(6310), [sym_comment] = ACTIONS(121), }, - [1091] = { - [sym__expression] = STATE(1078), + [1095] = { + [sym__expression] = STATE(1082), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -49030,243 +49693,244 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_initializer_list] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(6266), - [anon_sym_PLUS_PLUS] = ACTIONS(6266), - [anon_sym_sizeof] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), + [sym_initializer_list] = STATE(334), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(6312), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(6315), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(6315), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(6318), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(6320), + [anon_sym_DASH] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(6323), + [anon_sym_PLUS_PLUS] = ACTIONS(6323), + [anon_sym_sizeof] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1092] = { - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(6269), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(6272), - [anon_sym_QMARK] = ACTIONS(6275), - [anon_sym_STAR_EQ] = ACTIONS(6278), - [anon_sym_SLASH_EQ] = ACTIONS(6278), - [anon_sym_PERCENT_EQ] = ACTIONS(6278), - [anon_sym_PLUS_EQ] = ACTIONS(6278), - [anon_sym_DASH_EQ] = ACTIONS(6278), - [anon_sym_LT_LT_EQ] = ACTIONS(6278), - [anon_sym_GT_GT_EQ] = ACTIONS(6278), - [anon_sym_AMP_EQ] = ACTIONS(6278), - [anon_sym_CARET_EQ] = ACTIONS(6278), - [anon_sym_PIPE_EQ] = ACTIONS(6278), - [anon_sym_AMP] = ACTIONS(6281), - [anon_sym_PIPE_PIPE] = ACTIONS(6284), - [anon_sym_AMP_AMP] = ACTIONS(6284), - [anon_sym_PIPE] = ACTIONS(6281), - [anon_sym_CARET] = ACTIONS(6281), - [anon_sym_EQ_EQ] = ACTIONS(6287), - [anon_sym_BANG_EQ] = ACTIONS(6287), - [anon_sym_LT] = ACTIONS(6290), - [anon_sym_GT] = ACTIONS(6290), - [anon_sym_LT_EQ] = ACTIONS(6293), - [anon_sym_GT_EQ] = ACTIONS(6293), - [anon_sym_LT_LT] = ACTIONS(6296), - [anon_sym_GT_GT] = ACTIONS(6296), - [anon_sym_PLUS] = ACTIONS(6269), - [anon_sym_DASH] = ACTIONS(6269), - [anon_sym_SLASH] = ACTIONS(6269), - [anon_sym_PERCENT] = ACTIONS(6269), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_DASH_GT] = ACTIONS(3657), + [1096] = { + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(6326), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_EQ] = ACTIONS(6329), + [anon_sym_QMARK] = ACTIONS(6332), + [anon_sym_STAR_EQ] = ACTIONS(6335), + [anon_sym_SLASH_EQ] = ACTIONS(6335), + [anon_sym_PERCENT_EQ] = ACTIONS(6335), + [anon_sym_PLUS_EQ] = ACTIONS(6335), + [anon_sym_DASH_EQ] = ACTIONS(6335), + [anon_sym_LT_LT_EQ] = ACTIONS(6335), + [anon_sym_GT_GT_EQ] = ACTIONS(6335), + [anon_sym_AMP_EQ] = ACTIONS(6335), + [anon_sym_CARET_EQ] = ACTIONS(6335), + [anon_sym_PIPE_EQ] = ACTIONS(6335), + [anon_sym_AMP] = ACTIONS(6338), + [anon_sym_PIPE_PIPE] = ACTIONS(6341), + [anon_sym_AMP_AMP] = ACTIONS(6341), + [anon_sym_PIPE] = ACTIONS(6338), + [anon_sym_CARET] = ACTIONS(6338), + [anon_sym_EQ_EQ] = ACTIONS(6344), + [anon_sym_BANG_EQ] = ACTIONS(6344), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_GT] = ACTIONS(6347), + [anon_sym_LT_EQ] = ACTIONS(6350), + [anon_sym_GT_EQ] = ACTIONS(6350), + [anon_sym_LT_LT] = ACTIONS(6353), + [anon_sym_GT_GT] = ACTIONS(6353), + [anon_sym_PLUS] = ACTIONS(6326), + [anon_sym_DASH] = ACTIONS(6326), + [anon_sym_SLASH] = ACTIONS(6326), + [anon_sym_PERCENT] = ACTIONS(6326), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_DASH_GT] = ACTIONS(3710), [sym_comment] = ACTIONS(121), }, - [1093] = { - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_EQ] = ACTIONS(6302), - [anon_sym_QMARK] = ACTIONS(6305), - [anon_sym_STAR_EQ] = ACTIONS(6308), - [anon_sym_SLASH_EQ] = ACTIONS(6308), - [anon_sym_PERCENT_EQ] = ACTIONS(6308), - [anon_sym_PLUS_EQ] = ACTIONS(6308), - [anon_sym_DASH_EQ] = ACTIONS(6308), - [anon_sym_LT_LT_EQ] = ACTIONS(6308), - [anon_sym_GT_GT_EQ] = ACTIONS(6308), - [anon_sym_AMP_EQ] = ACTIONS(6308), - [anon_sym_CARET_EQ] = ACTIONS(6308), - [anon_sym_PIPE_EQ] = ACTIONS(6308), - [anon_sym_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(6314), - [anon_sym_AMP_AMP] = ACTIONS(6314), - [anon_sym_PIPE] = ACTIONS(6311), - [anon_sym_CARET] = ACTIONS(6311), - [anon_sym_EQ_EQ] = ACTIONS(6317), - [anon_sym_BANG_EQ] = ACTIONS(6317), - [anon_sym_LT] = ACTIONS(6320), - [anon_sym_GT] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6323), - [anon_sym_GT_EQ] = ACTIONS(6323), - [anon_sym_LT_LT] = ACTIONS(6326), - [anon_sym_GT_GT] = ACTIONS(6326), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6299), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4398), - [anon_sym_DASH_GT] = ACTIONS(4398), + [1097] = { + [anon_sym_LPAREN] = ACTIONS(4416), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(6356), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_EQ] = ACTIONS(6359), + [anon_sym_QMARK] = ACTIONS(6362), + [anon_sym_STAR_EQ] = ACTIONS(6365), + [anon_sym_SLASH_EQ] = ACTIONS(6365), + [anon_sym_PERCENT_EQ] = ACTIONS(6365), + [anon_sym_PLUS_EQ] = ACTIONS(6365), + [anon_sym_DASH_EQ] = ACTIONS(6365), + [anon_sym_LT_LT_EQ] = ACTIONS(6365), + [anon_sym_GT_GT_EQ] = ACTIONS(6365), + [anon_sym_AMP_EQ] = ACTIONS(6365), + [anon_sym_CARET_EQ] = ACTIONS(6365), + [anon_sym_PIPE_EQ] = ACTIONS(6365), + [anon_sym_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6371), + [anon_sym_AMP_AMP] = ACTIONS(6371), + [anon_sym_PIPE] = ACTIONS(6368), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_EQ_EQ] = ACTIONS(6374), + [anon_sym_BANG_EQ] = ACTIONS(6374), + [anon_sym_LT] = ACTIONS(6377), + [anon_sym_GT] = ACTIONS(6377), + [anon_sym_LT_EQ] = ACTIONS(6380), + [anon_sym_GT_EQ] = ACTIONS(6380), + [anon_sym_LT_LT] = ACTIONS(6383), + [anon_sym_GT_GT] = ACTIONS(6383), + [anon_sym_PLUS] = ACTIONS(6356), + [anon_sym_DASH] = ACTIONS(6356), + [anon_sym_SLASH] = ACTIONS(6356), + [anon_sym_PERCENT] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(4452), + [anon_sym_PLUS_PLUS] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_DASH_GT] = ACTIONS(4455), [sym_comment] = ACTIONS(121), }, - [1094] = { - [anon_sym_LPAREN] = ACTIONS(4401), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(6332), - [anon_sym_QMARK] = ACTIONS(6335), - [anon_sym_STAR_EQ] = ACTIONS(6338), - [anon_sym_SLASH_EQ] = ACTIONS(6338), - [anon_sym_PERCENT_EQ] = ACTIONS(6338), - [anon_sym_PLUS_EQ] = ACTIONS(6338), - [anon_sym_DASH_EQ] = ACTIONS(6338), - [anon_sym_LT_LT_EQ] = ACTIONS(6338), - [anon_sym_GT_GT_EQ] = ACTIONS(6338), - [anon_sym_AMP_EQ] = ACTIONS(6338), - [anon_sym_CARET_EQ] = ACTIONS(6338), - [anon_sym_PIPE_EQ] = ACTIONS(6338), - [anon_sym_AMP] = ACTIONS(6341), - [anon_sym_PIPE_PIPE] = ACTIONS(6344), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_CARET] = ACTIONS(6341), - [anon_sym_EQ_EQ] = ACTIONS(6347), - [anon_sym_BANG_EQ] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6350), - [anon_sym_GT] = ACTIONS(6350), - [anon_sym_LT_EQ] = ACTIONS(6353), - [anon_sym_GT_EQ] = ACTIONS(6353), - [anon_sym_LT_LT] = ACTIONS(6356), - [anon_sym_GT_GT] = ACTIONS(6356), - [anon_sym_PLUS] = ACTIONS(6329), - [anon_sym_DASH] = ACTIONS(6329), - [anon_sym_SLASH] = ACTIONS(6329), - [anon_sym_PERCENT] = ACTIONS(6329), - [anon_sym_DASH_DASH] = ACTIONS(4437), - [anon_sym_PLUS_PLUS] = ACTIONS(4437), - [anon_sym_DOT] = ACTIONS(4440), - [anon_sym_DASH_GT] = ACTIONS(4440), + [1098] = { + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(6386), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_EQ] = ACTIONS(6389), + [anon_sym_QMARK] = ACTIONS(6392), + [anon_sym_STAR_EQ] = ACTIONS(6395), + [anon_sym_SLASH_EQ] = ACTIONS(6395), + [anon_sym_PERCENT_EQ] = ACTIONS(6395), + [anon_sym_PLUS_EQ] = ACTIONS(6395), + [anon_sym_DASH_EQ] = ACTIONS(6395), + [anon_sym_LT_LT_EQ] = ACTIONS(6395), + [anon_sym_GT_GT_EQ] = ACTIONS(6395), + [anon_sym_AMP_EQ] = ACTIONS(6395), + [anon_sym_CARET_EQ] = ACTIONS(6395), + [anon_sym_PIPE_EQ] = ACTIONS(6395), + [anon_sym_AMP] = ACTIONS(6398), + [anon_sym_PIPE_PIPE] = ACTIONS(6401), + [anon_sym_AMP_AMP] = ACTIONS(6401), + [anon_sym_PIPE] = ACTIONS(6398), + [anon_sym_CARET] = ACTIONS(6398), + [anon_sym_EQ_EQ] = ACTIONS(6404), + [anon_sym_BANG_EQ] = ACTIONS(6404), + [anon_sym_LT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(6407), + [anon_sym_LT_EQ] = ACTIONS(6410), + [anon_sym_GT_EQ] = ACTIONS(6410), + [anon_sym_LT_LT] = ACTIONS(6413), + [anon_sym_GT_GT] = ACTIONS(6413), + [anon_sym_PLUS] = ACTIONS(6386), + [anon_sym_DASH] = ACTIONS(6386), + [anon_sym_SLASH] = ACTIONS(6386), + [anon_sym_PERCENT] = ACTIONS(6386), + [anon_sym_DASH_DASH] = ACTIONS(4494), + [anon_sym_PLUS_PLUS] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_DASH_GT] = ACTIONS(4497), [sym_comment] = ACTIONS(121), }, - [1095] = { - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_COMMA] = ACTIONS(5109), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(5109), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_EQ] = ACTIONS(5112), + [1099] = { + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(5166), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5169), [anon_sym_COLON] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_comment] = ACTIONS(121), }, - [1096] = { - [sym__declarator] = STATE(260), + [1100] = { + [sym__declarator] = STATE(264), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -49283,12 +49947,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(438), + [sym_type_name] = STATE(442), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(5837), - [anon_sym_STAR] = ACTIONS(5839), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5896), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -49298,26 +49963,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(5107), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(5164), [sym_comment] = ACTIONS(121), }, - [1097] = { - [sym__declarator] = STATE(257), + [1101] = { + [sym__declarator] = STATE(261), [sym_pointer_declarator] = STATE(32), [sym_function_declarator] = STATE(32), [sym_array_declarator] = STATE(32), - [sym__expression] = STATE(393), + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -49334,36 +49999,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(5837), - [anon_sym_STAR] = ACTIONS(5839), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5896), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(5177), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(5234), [sym_comment] = ACTIONS(121), }, - [1098] = { - [sym__declaration_specifiers] = STATE(224), + [1102] = { + [sym__declaration_specifiers] = STATE(228), [sym_storage_class_specifier] = STATE(9), [sym_type_qualifier] = STATE(9), - [sym__type_specifier] = STATE(225), + [sym__type_specifier] = STATE(229), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym_parameter_declaration] = STATE(231), + [sym_parameter_declaration] = STATE(235), [sym_macro_type_specifier] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(23), [aux_sym_sized_type_specifier_repeat1] = STATE(24), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6416), [anon_sym_extern] = ACTIONS(135), [anon_sym_static] = ACTIONS(135), [anon_sym_typedef] = ACTIONS(135), @@ -49379,40 +50045,40 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [sym_identifier] = ACTIONS(6361), + [sym_identifier] = ACTIONS(6418), [sym_comment] = ACTIONS(121), }, - [1099] = { - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), + [1103] = { + [anon_sym_COMMA] = ACTIONS(6420), + [anon_sym_RPAREN] = ACTIONS(6420), [sym_comment] = ACTIONS(121), }, - [1100] = { + [1104] = { [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(6366), - [anon_sym_RPAREN] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(6423), + [anon_sym_RPAREN] = ACTIONS(6423), [anon_sym_STAR] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(196), [sym_identifier] = ACTIONS(198), [sym_comment] = ACTIONS(121), }, - [1101] = { - [sym__declarator] = STATE(260), - [sym__abstract_declarator] = STATE(261), + [1105] = { + [sym__declarator] = STATE(264), + [sym__abstract_declarator] = STATE(265), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym_type_qualifier] = STATE(195), - [sym__type_specifier] = STATE(196), + [sym_abstract_array_declarator] = STATE(212), + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), [sym_union_specifier] = STATE(21), - [sym__expression] = STATE(197), - [sym_comma_expression] = STATE(198), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -49429,13 +50095,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [sym_type_name] = STATE(907), + [sym_type_name] = STATE(911), + [sym_concatenated_string] = STATE(53), [sym_macro_type_specifier] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(200), - [aux_sym_sized_type_specifier_repeat1] = STATE(201), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_LBRACK] = ACTIONS(643), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(661), [anon_sym_const] = ACTIONS(137), [anon_sym_restrict] = ACTIONS(137), [anon_sym_volatile] = ACTIONS(137), @@ -49445,85 +50112,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(143), [anon_sym_struct] = ACTIONS(145), [anon_sym_union] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(5107), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(5164), [sym_comment] = ACTIONS(121), }, - [1102] = { - [aux_sym_preproc_params_repeat1] = STATE(755), - [aux_sym_parameter_type_list_repeat1] = STATE(228), - [anon_sym_COMMA] = ACTIONS(6369), - [anon_sym_RPAREN] = ACTIONS(6371), + [1106] = { + [aux_sym_preproc_params_repeat1] = STATE(759), + [aux_sym_parameter_type_list_repeat1] = STATE(232), + [anon_sym_COMMA] = ACTIONS(6426), + [anon_sym_RPAREN] = ACTIONS(6428), [sym_comment] = ACTIONS(121), }, - [1103] = { - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(6374), - [anon_sym_COMMA] = ACTIONS(6374), - [anon_sym_RPAREN] = ACTIONS(6374), - [sym_preproc_arg] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(6378), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(6374), - [anon_sym_RBRACK] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6378), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(561), - [anon_sym_SLASH_EQ] = ACTIONS(561), - [anon_sym_PERCENT_EQ] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(561), - [anon_sym_DASH_EQ] = ACTIONS(561), - [anon_sym_LT_LT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_EQ] = ACTIONS(561), - [anon_sym_AMP_EQ] = ACTIONS(561), - [anon_sym_CARET_EQ] = ACTIONS(561), - [anon_sym_PIPE_EQ] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_DASH_GT] = ACTIONS(561), + [1107] = { + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(6431), + [anon_sym_COMMA] = ACTIONS(6431), + [anon_sym_RPAREN] = ACTIONS(6431), + [sym_preproc_arg] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(6435), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(6431), + [anon_sym_RBRACK] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(6438), + [anon_sym_COLON] = ACTIONS(6435), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_STAR_EQ] = ACTIONS(565), + [anon_sym_SLASH_EQ] = ACTIONS(565), + [anon_sym_PERCENT_EQ] = ACTIONS(565), + [anon_sym_PLUS_EQ] = ACTIONS(565), + [anon_sym_DASH_EQ] = ACTIONS(565), + [anon_sym_LT_LT_EQ] = ACTIONS(565), + [anon_sym_GT_GT_EQ] = ACTIONS(565), + [anon_sym_AMP_EQ] = ACTIONS(565), + [anon_sym_CARET_EQ] = ACTIONS(565), + [anon_sym_PIPE_EQ] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_DASH_GT] = ACTIONS(565), [sym_comment] = ACTIONS(121), }, - [1104] = { - [sym__declarator] = STATE(257), - [sym__abstract_declarator] = STATE(258), + [1108] = { + [sym__declarator] = STATE(261), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym__expression] = STATE(905), + [sym_abstract_array_declarator] = STATE(212), + [sym__expression] = STATE(909), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -49540,70 +50207,71 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(6384), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1803), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(6441), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1821), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(5177), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(5234), [sym_comment] = ACTIONS(121), }, - [1105] = { - [aux_sym_preproc_params_repeat1] = STATE(755), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DASH_GT] = ACTIONS(393), + [1109] = { + [aux_sym_preproc_params_repeat1] = STATE(759), + [anon_sym_LPAREN] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(6444), + [anon_sym_RPAREN] = ACTIONS(6448), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(5241), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(397), [sym_identifier] = ACTIONS(198), [sym_comment] = ACTIONS(121), }, - [1106] = { - [sym__type_specifier] = STATE(1116), + [1110] = { + [sym__type_specifier] = STATE(1120), [sym_sized_type_specifier] = STATE(21), [sym_enum_specifier] = STATE(21), [sym_struct_specifier] = STATE(21), @@ -49619,70 +50287,70 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(149), [sym_comment] = ACTIONS(121), }, - [1107] = { - [sym__declarator] = STATE(1114), - [sym__abstract_declarator] = STATE(1115), + [1111] = { + [sym__declarator] = STATE(1118), + [sym__abstract_declarator] = STATE(1119), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), + [sym_abstract_array_declarator] = STATE(212), [sym_init_declarator] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(6396), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(6453), + [anon_sym_STAR] = ACTIONS(6456), + [anon_sym_LBRACK] = ACTIONS(661), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [1108] = { - [aux_sym_for_statement_repeat1] = STATE(174), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(6401), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_STAR_EQ] = ACTIONS(3917), - [anon_sym_SLASH_EQ] = ACTIONS(3917), - [anon_sym_PERCENT_EQ] = ACTIONS(3917), - [anon_sym_PLUS_EQ] = ACTIONS(3917), - [anon_sym_DASH_EQ] = ACTIONS(3917), - [anon_sym_LT_LT_EQ] = ACTIONS(3917), - [anon_sym_GT_GT_EQ] = ACTIONS(3917), - [anon_sym_AMP_EQ] = ACTIONS(3917), - [anon_sym_CARET_EQ] = ACTIONS(3917), - [anon_sym_PIPE_EQ] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3919), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3919), - [anon_sym_CARET] = ACTIONS(3919), - [anon_sym_EQ_EQ] = ACTIONS(3923), - [anon_sym_BANG_EQ] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3925), - [anon_sym_GT] = ACTIONS(3925), - [anon_sym_LT_EQ] = ACTIONS(3927), - [anon_sym_GT_EQ] = ACTIONS(3927), - [anon_sym_LT_LT] = ACTIONS(3929), - [anon_sym_GT_GT] = ACTIONS(3929), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3911), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [1112] = { + [aux_sym_for_statement_repeat1] = STATE(175), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(6458), + [anon_sym_RPAREN] = ACTIONS(6460), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3974), + [anon_sym_SLASH_EQ] = ACTIONS(3974), + [anon_sym_PERCENT_EQ] = ACTIONS(3974), + [anon_sym_PLUS_EQ] = ACTIONS(3974), + [anon_sym_DASH_EQ] = ACTIONS(3974), + [anon_sym_LT_LT_EQ] = ACTIONS(3974), + [anon_sym_GT_GT_EQ] = ACTIONS(3974), + [anon_sym_AMP_EQ] = ACTIONS(3974), + [anon_sym_CARET_EQ] = ACTIONS(3974), + [anon_sym_PIPE_EQ] = ACTIONS(3974), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_CARET] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3982), + [anon_sym_GT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3984), + [anon_sym_GT_EQ] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3968), + [anon_sym_SLASH] = ACTIONS(3968), + [anon_sym_PERCENT] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [1109] = { - [sym__expression] = STATE(1112), - [sym_comma_expression] = STATE(389), + [1113] = { + [sym__expression] = STATE(1116), + [sym_comma_expression] = STATE(393), [sym_conditional_expression] = STATE(53), [sym_assignment_expression] = STATE(53), [sym_pointer_expression] = STATE(53), @@ -49699,279 +50367,281 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(53), [sym_compound_literal_expression] = STATE(53), [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(353), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(361), - [anon_sym_PLUS_PLUS] = ACTIONS(361), - [anon_sym_sizeof] = ACTIONS(363), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(363), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_sizeof] = ACTIONS(365), [sym_number_literal] = ACTIONS(331), [sym_char_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), + [sym_string_literal] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), [sym_comment] = ACTIONS(121), }, - [1110] = { - [sym_compound_statement] = STATE(478), - [sym__statement] = STATE(1111), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(480), - [sym_comma_expression] = STATE(481), - [sym_conditional_expression] = STATE(53), - [sym_assignment_expression] = STATE(53), - [sym_pointer_expression] = STATE(53), - [sym_logical_expression] = STATE(53), - [sym_bitwise_expression] = STATE(53), - [sym_equality_expression] = STATE(53), - [sym_relational_expression] = STATE(53), - [sym_shift_expression] = STATE(53), - [sym_math_expression] = STATE(53), - [sym_cast_expression] = STATE(53), - [sym_sizeof_expression] = STATE(53), - [sym_subscript_expression] = STATE(53), - [sym_call_expression] = STATE(53), - [sym_field_expression] = STATE(53), - [sym_compound_literal_expression] = STATE(53), - [sym_parenthesized_expression] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3711), - [anon_sym_RPAREN] = ACTIONS(3711), - [anon_sym_SEMI] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3722), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_LBRACK] = ACTIONS(3711), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_RBRACK] = ACTIONS(3711), - [anon_sym_EQ] = ACTIONS(3731), - [anon_sym_typedef] = ACTIONS(1431), - [anon_sym_auto] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_restrict] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(1431), - [sym_function_specifier] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_COLON] = ACTIONS(3711), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1945), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_do] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_goto] = ACTIONS(1969), - [anon_sym_QMARK] = ACTIONS(3711), - [anon_sym_STAR_EQ] = ACTIONS(3711), - [anon_sym_SLASH_EQ] = ACTIONS(3711), - [anon_sym_PERCENT_EQ] = ACTIONS(3711), - [anon_sym_PLUS_EQ] = ACTIONS(3711), - [anon_sym_DASH_EQ] = ACTIONS(3711), - [anon_sym_LT_LT_EQ] = ACTIONS(3711), - [anon_sym_GT_GT_EQ] = ACTIONS(3711), - [anon_sym_AMP_EQ] = ACTIONS(3711), - [anon_sym_CARET_EQ] = ACTIONS(3711), - [anon_sym_PIPE_EQ] = ACTIONS(3711), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_PIPE_PIPE] = ACTIONS(3711), - [anon_sym_AMP_AMP] = ACTIONS(3711), - [anon_sym_BANG] = ACTIONS(3734), - [anon_sym_PIPE] = ACTIONS(3731), - [anon_sym_CARET] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(3737), - [anon_sym_EQ_EQ] = ACTIONS(3711), - [anon_sym_BANG_EQ] = ACTIONS(3711), - [anon_sym_LT] = ACTIONS(3731), - [anon_sym_GT] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3711), - [anon_sym_GT_EQ] = ACTIONS(3711), - [anon_sym_LT_LT] = ACTIONS(3731), - [anon_sym_GT_GT] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3731), - [anon_sym_PERCENT] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3745), - [anon_sym_PLUS_PLUS] = ACTIONS(3745), - [anon_sym_sizeof] = ACTIONS(3750), - [anon_sym_DOT] = ACTIONS(3711), - [anon_sym_DASH_GT] = ACTIONS(3711), - [sym_number_literal] = ACTIONS(2011), - [sym_char_literal] = ACTIONS(2011), - [sym_string_literal] = ACTIONS(2011), - [sym_identifier] = ACTIONS(3753), + [1114] = { + [sym_compound_statement] = STATE(482), + [sym__statement] = STATE(1115), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(484), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(53), + [sym_assignment_expression] = STATE(53), + [sym_pointer_expression] = STATE(53), + [sym_logical_expression] = STATE(53), + [sym_bitwise_expression] = STATE(53), + [sym_equality_expression] = STATE(53), + [sym_relational_expression] = STATE(53), + [sym_shift_expression] = STATE(53), + [sym_math_expression] = STATE(53), + [sym_cast_expression] = STATE(53), + [sym_sizeof_expression] = STATE(53), + [sym_subscript_expression] = STATE(53), + [sym_call_expression] = STATE(53), + [sym_field_expression] = STATE(53), + [sym_compound_literal_expression] = STATE(53), + [sym_parenthesized_expression] = STATE(53), + [sym_concatenated_string] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(3759), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3767), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(3775), + [anon_sym_STAR] = ACTIONS(3779), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_RBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_auto] = ACTIONS(1449), + [anon_sym_register] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_restrict] = ACTIONS(1449), + [anon_sym_volatile] = ACTIONS(1449), + [sym_function_specifier] = ACTIONS(1449), + [anon_sym_unsigned] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_case] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(3764), + [anon_sym_STAR_EQ] = ACTIONS(3764), + [anon_sym_SLASH_EQ] = ACTIONS(3764), + [anon_sym_PERCENT_EQ] = ACTIONS(3764), + [anon_sym_PLUS_EQ] = ACTIONS(3764), + [anon_sym_DASH_EQ] = ACTIONS(3764), + [anon_sym_LT_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_GT_EQ] = ACTIONS(3764), + [anon_sym_AMP_EQ] = ACTIONS(3764), + [anon_sym_CARET_EQ] = ACTIONS(3764), + [anon_sym_PIPE_EQ] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3779), + [anon_sym_PIPE_PIPE] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_BANG] = ACTIONS(3787), + [anon_sym_PIPE] = ACTIONS(3784), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_EQ_EQ] = ACTIONS(3764), + [anon_sym_BANG_EQ] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_GT] = ACTIONS(3784), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_LT_LT] = ACTIONS(3784), + [anon_sym_GT_GT] = ACTIONS(3784), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_SLASH] = ACTIONS(3784), + [anon_sym_PERCENT] = ACTIONS(3784), + [anon_sym_DASH_DASH] = ACTIONS(3798), + [anon_sym_PLUS_PLUS] = ACTIONS(3798), + [anon_sym_sizeof] = ACTIONS(3803), + [anon_sym_DOT] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_number_literal] = ACTIONS(2029), + [sym_char_literal] = ACTIONS(2029), + [sym_string_literal] = ACTIONS(2032), + [sym_identifier] = ACTIONS(3806), [sym_comment] = ACTIONS(121), }, - [1111] = { - [anon_sym_LPAREN] = ACTIONS(6405), - [anon_sym_SEMI] = ACTIONS(6405), - [anon_sym_extern] = ACTIONS(6409), - [anon_sym_LBRACE] = ACTIONS(6405), - [anon_sym_RBRACE] = ACTIONS(6405), - [anon_sym_STAR] = ACTIONS(6405), - [anon_sym_static] = ACTIONS(6409), - [anon_sym_typedef] = ACTIONS(6409), - [anon_sym_auto] = ACTIONS(6409), - [anon_sym_register] = ACTIONS(6409), - [anon_sym_const] = ACTIONS(6409), - [anon_sym_restrict] = ACTIONS(6409), - [anon_sym_volatile] = ACTIONS(6409), - [sym_function_specifier] = ACTIONS(6409), - [anon_sym_unsigned] = ACTIONS(6409), - [anon_sym_long] = ACTIONS(6409), - [anon_sym_short] = ACTIONS(6409), - [anon_sym_enum] = ACTIONS(6409), - [anon_sym_struct] = ACTIONS(6409), - [anon_sym_union] = ACTIONS(6409), - [anon_sym_if] = ACTIONS(6409), - [anon_sym_else] = ACTIONS(6413), - [anon_sym_switch] = ACTIONS(6409), - [anon_sym_case] = ACTIONS(6409), - [anon_sym_default] = ACTIONS(6409), - [anon_sym_while] = ACTIONS(6409), - [anon_sym_do] = ACTIONS(6409), - [anon_sym_for] = ACTIONS(6409), - [anon_sym_return] = ACTIONS(6409), - [anon_sym_break] = ACTIONS(6409), - [anon_sym_continue] = ACTIONS(6409), - [anon_sym_goto] = ACTIONS(6409), - [anon_sym_AMP] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_TILDE] = ACTIONS(6405), - [anon_sym_PLUS] = ACTIONS(6409), - [anon_sym_DASH] = ACTIONS(6409), - [anon_sym_DASH_DASH] = ACTIONS(6405), - [anon_sym_PLUS_PLUS] = ACTIONS(6405), - [anon_sym_sizeof] = ACTIONS(6409), - [sym_number_literal] = ACTIONS(6409), - [sym_char_literal] = ACTIONS(6409), - [sym_string_literal] = ACTIONS(6409), - [sym_identifier] = ACTIONS(6418), + [1115] = { + [anon_sym_LPAREN] = ACTIONS(6462), + [anon_sym_SEMI] = ACTIONS(6462), + [anon_sym_extern] = ACTIONS(6466), + [anon_sym_LBRACE] = ACTIONS(6462), + [anon_sym_RBRACE] = ACTIONS(6462), + [anon_sym_STAR] = ACTIONS(6462), + [anon_sym_static] = ACTIONS(6466), + [anon_sym_typedef] = ACTIONS(6466), + [anon_sym_auto] = ACTIONS(6466), + [anon_sym_register] = ACTIONS(6466), + [anon_sym_const] = ACTIONS(6466), + [anon_sym_restrict] = ACTIONS(6466), + [anon_sym_volatile] = ACTIONS(6466), + [sym_function_specifier] = ACTIONS(6466), + [anon_sym_unsigned] = ACTIONS(6466), + [anon_sym_long] = ACTIONS(6466), + [anon_sym_short] = ACTIONS(6466), + [anon_sym_enum] = ACTIONS(6466), + [anon_sym_struct] = ACTIONS(6466), + [anon_sym_union] = ACTIONS(6466), + [anon_sym_if] = ACTIONS(6466), + [anon_sym_else] = ACTIONS(6470), + [anon_sym_switch] = ACTIONS(6466), + [anon_sym_case] = ACTIONS(6466), + [anon_sym_default] = ACTIONS(6466), + [anon_sym_while] = ACTIONS(6466), + [anon_sym_do] = ACTIONS(6466), + [anon_sym_for] = ACTIONS(6466), + [anon_sym_return] = ACTIONS(6466), + [anon_sym_break] = ACTIONS(6466), + [anon_sym_continue] = ACTIONS(6466), + [anon_sym_goto] = ACTIONS(6466), + [anon_sym_AMP] = ACTIONS(6462), + [anon_sym_BANG] = ACTIONS(6462), + [anon_sym_TILDE] = ACTIONS(6462), + [anon_sym_PLUS] = ACTIONS(6466), + [anon_sym_DASH] = ACTIONS(6466), + [anon_sym_DASH_DASH] = ACTIONS(6462), + [anon_sym_PLUS_PLUS] = ACTIONS(6462), + [anon_sym_sizeof] = ACTIONS(6466), + [sym_number_literal] = ACTIONS(6466), + [sym_char_literal] = ACTIONS(6466), + [sym_string_literal] = ACTIONS(6466), + [sym_identifier] = ACTIONS(6475), [sym_comment] = ACTIONS(121), }, - [1112] = { - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(6422), - [anon_sym_RPAREN] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(433), + [1116] = { + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(6479), + [anon_sym_RPAREN] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), [sym_comment] = ACTIONS(121), }, - [1113] = { - [sym__declarator] = STATE(932), - [sym__abstract_declarator] = STATE(258), + [1117] = { + [sym__declarator] = STATE(936), + [sym__abstract_declarator] = STATE(262), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_LBRACK] = ACTIONS(2399), + [sym_abstract_array_declarator] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(6456), + [anon_sym_LBRACK] = ACTIONS(2434), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [1114] = { + [1118] = { [aux_sym_declaration_repeat1] = STATE(37), [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(6425), - [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(6482), + [anon_sym_RPAREN] = ACTIONS(745), [anon_sym_SEMI] = ACTIONS(281), [anon_sym_LBRACK] = ACTIONS(285), [anon_sym_EQ] = ACTIONS(287), [sym_comment] = ACTIONS(121), }, - [1115] = { - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(6428), - [anon_sym_LBRACK] = ACTIONS(671), + [1119] = { + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(6485), + [anon_sym_LBRACK] = ACTIONS(689), [sym_comment] = ACTIONS(121), }, - [1116] = { - [sym__declarator] = STATE(1117), - [sym__abstract_declarator] = STATE(266), + [1120] = { + [sym__declarator] = STATE(1121), + [sym__abstract_declarator] = STATE(270), [sym_pointer_declarator] = STATE(32), - [sym_abstract_pointer_declarator] = STATE(208), + [sym_abstract_pointer_declarator] = STATE(212), [sym_function_declarator] = STATE(32), - [sym_abstract_function_declarator] = STATE(208), + [sym_abstract_function_declarator] = STATE(212), [sym_array_declarator] = STATE(32), - [sym_abstract_array_declarator] = STATE(208), - [sym_init_declarator] = STATE(492), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_LBRACK] = ACTIONS(643), + [sym_abstract_array_declarator] = STATE(212), + [sym_init_declarator] = STATE(496), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_STAR] = ACTIONS(6456), + [anon_sym_LBRACK] = ACTIONS(661), [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, - [1117] = { - [aux_sym_declaration_repeat1] = STATE(493), + [1121] = { + [aux_sym_declaration_repeat1] = STATE(497), [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(4622), - [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_COMMA] = ACTIONS(4679), + [anon_sym_RPAREN] = ACTIONS(785), [anon_sym_SEMI] = ACTIONS(299), [anon_sym_LBRACK] = ACTIONS(285), [anon_sym_EQ] = ACTIONS(287), @@ -49984,63 +50654,63 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(0), [3] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(2), [5] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(3), - [7] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(763), - [9] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(764), - [11] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(765), - [13] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(766), + [7] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(767), + [9] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(768), + [11] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(769), + [13] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(770), [15] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(4), - [17] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(767), - [19] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(736), + [17] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(771), + [19] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(740), [21] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(5), - [23] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(768), + [23] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(772), [25] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(6), - [27] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(769), - [29] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(770), - [31] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(771), - [33] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(772), - [35] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(773), - [37] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(774), - [39] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(775), + [27] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(773), + [29] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(774), + [31] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(775), + [33] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(776), + [35] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(777), + [37] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(778), + [39] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(779), [41] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(7), [43] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(8), - [45] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(776), - [47] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(777), + [45] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(780), + [47] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(781), [49] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(11), [51] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(12), [53] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(13), - [55] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(778), - [57] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(677), - [59] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(720), - [61] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(678), - [63] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(679), - [65] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(680), - [67] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(779), - [69] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(469), - [71] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(682), - [73] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(471), - [75] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(472), - [77] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(473), - [79] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(474), - [81] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(780), - [83] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(781), - [85] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(782), - [87] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(783), - [89] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(784), - [91] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(785), - [93] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(786), - [95] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(787), - [97] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(788), - [99] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(788), - [101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(789), - [103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(790), - [105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(791), - [107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(792), - [109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(793), - [111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(794), - [113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(72), + [55] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(782), + [57] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(681), + [59] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(724), + [61] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(682), + [63] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(683), + [65] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(684), + [67] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(783), + [69] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(473), + [71] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(686), + [73] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(475), + [75] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(476), + [77] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(477), + [79] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(478), + [81] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(784), + [83] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(785), + [85] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(786), + [87] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(787), + [89] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(788), + [91] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(789), + [93] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(790), + [95] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(791), + [97] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(792), + [99] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(792), + [101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(793), + [103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(794), + [105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(795), + [107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(796), + [109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(797), + [111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(798), + [113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(73), [115] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(53), - [117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(795), - [119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(796), + [117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(799), + [119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(800), [121] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), [123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_translation_unit, 0), [125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2), @@ -50056,12 +50726,12 @@ static TSParseActionEntry ts_parse_actions[] = { [145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), [147] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(13), [149] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(14), - [151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(762), - [153] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(743), - [155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(734), - [157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(733), + [151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(766), + [153] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(747), + [155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(738), + [157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(737), [159] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), - [161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), + [161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(728), [163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), [165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_qualifier, 1), [167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_qualifier, 1), @@ -50071,13 +50741,13 @@ static TSParseActionEntry ts_parse_actions[] = { [175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), [177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), [179] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), - [181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), - [183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(422), - [185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), - [187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(414), - [189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(270), - [191] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(271), - [193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(267), + [181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), + [183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(426), + [185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), + [187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(418), + [189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), + [191] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(275), + [193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(271), [196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), [198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), [200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), @@ -50113,7 +50783,7 @@ static TSParseActionEntry ts_parse_actions[] = { [261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), [263] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), [265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), + [267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), [269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), [271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), [273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), @@ -50121,7 +50791,7 @@ static TSParseActionEntry ts_parse_actions[] = { [277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(43), [279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(35), [281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(36), - [283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), + [283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(464), [285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44), [287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(45), [289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(40), @@ -50134,1992 +50804,2008 @@ static TSParseActionEntry ts_parse_actions[] = { [303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), [305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), [307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 3), - [309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(222), - [311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(248), - [313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(119), - [315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120), - [317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(237), - [319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), - [321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(121), - [323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(122), - [325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(123), - [327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(123), - [329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), + [309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(226), + [311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), + [313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120), + [315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(121), + [317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(241), + [319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), + [321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(122), + [323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(123), + [325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), + [327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(124), + [329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(125), [331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(53), - [333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(54), - [335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46), - [337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), - [339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(48), - [341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(49), - [343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(50), - [345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(51), - [347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(51), - [349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(52), - [351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(152), - [353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(154), + [333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(54), + [335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(55), + [337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46), + [339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), + [341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(48), + [343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(49), + [345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(50), + [347] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(51), + [349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(51), + [351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(52), + [353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), [355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), [357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), - [359] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(157), - [361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(157), - [363] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), - [365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(194), - [367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), - [369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), - [371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), - [373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(334), - [375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), - [377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), - [379] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), - [381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), - [383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(338), - [385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), - [387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), - [389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), - [391] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), - [393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), - [395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), - [397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(57), - [399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), - [401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(58), - [403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(59), - [405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), - [407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(61), - [409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(60), - [411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(62), - [413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(63), - [415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(64), - [417] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(65), - [419] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(66), - [421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(67), - [423] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(68), + [359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(157), + [361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), + [363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(158), + [365] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(159), + [367] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), + [369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), + [373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), + [375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), + [379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), + [381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(341), + [383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), + [385] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(342), + [387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), + [389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), + [393] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), + [395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(193), + [397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), + [399] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), + [401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(58), + [403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), + [405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(59), + [407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(60), + [409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(61), + [411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(62), + [413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(61), + [415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(63), + [417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(64), + [419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(65), + [421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(66), + [423] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(67), [425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(68), [427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(69), - [429] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(70), - [431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(71), - [433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(72), - [435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), - [437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(85), - [439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), - [441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(87), - [443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), - [445] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(89), + [429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(69), + [431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(70), + [433] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(71), + [435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(72), + [437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(73), + [439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(154), + [441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), + [443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(87), + [445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), [447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(89), [449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(90), - [451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), - [453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), - [455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(73), - [457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_expression, 3), - [459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_expression, 3), - [461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), - [463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), - [465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), - [467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), - [469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), - [471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), - [473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), - [475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), - [477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), - [479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), - [481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), - [483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), - [485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), - [487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), - [489] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(92), - [491] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(93), - [493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(94), - [495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(95), - [497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), - [499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(96), - [501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(97), - [503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(98), - [505] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(99), - [507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), - [509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(101), - [511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(102), + [451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(90), + [453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(91), + [455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), + [457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), + [459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(74), + [461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_expression, 3), + [463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_expression, 3), + [465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), + [467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), + [469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), + [471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), + [473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), + [475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), + [477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), + [479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), + [481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), + [483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), + [485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), + [487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), + [489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), + [491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), + [493] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(93), + [495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(94), + [497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(95), + [499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(96), + [501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(94), + [503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(97), + [505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(98), + [507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), + [509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), + [511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), [513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), [515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(103), - [517] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(104), - [519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), - [521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), - [523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), - [525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(126), - [527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(127), - [529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(128), - [531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(129), - [533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), - [535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(130), - [537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(131), - [539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(132), - [541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(133), - [543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(134), - [545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(135), - [547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(136), + [517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), + [519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(104), + [521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(105), + [523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), + [525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), + [527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), + [529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(127), + [531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), + [533] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(129), + [535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), + [537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(129), + [539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(131), + [541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(132), + [543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(133), + [545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(134), + [547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(135), [549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(136), [551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(137), - [553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(138), - [555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript_expression, 4), - [557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript_expression, 4), - [559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(150), - [561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), - [563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), - [565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(192), - [567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160), - [569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), - [571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(162), - [573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(163), - [575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), - [577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), - [579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(165), - [581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(166), - [583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(167), - [585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(168), - [587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(169), - [589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(170), - [591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(171), + [553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), + [555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(138), + [557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), + [559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript_expression, 4), + [561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript_expression, 4), + [563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), + [565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), + [567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), + [569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(196), + [571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), + [573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), + [575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(163), + [577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(164), + [579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), + [581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), + [583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(166), + [585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(167), + [587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(168), + [589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(169), + [591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(170), [593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(171), [595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(172), - [597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(173), - [599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 4), - [601] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 4), - [603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(175), - [605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(176), - [607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), - [609] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), - [611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 3), - [613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(189), - [615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), - [619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), - [621] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(267), - [625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), - [628] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), - [631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), - [633] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), - [635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), - [637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(204), - [639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 1), - [641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(205), - [643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(206), - [645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(387), - [647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), - [649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), - [651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(26), - [653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), - [655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 2), - [657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), - [659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 2), - [661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), - [663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(251), - [665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), - [667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(209), - [669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 3), - [671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(210), - [673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 1), - [675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(223), - [677] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(211), - [679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), - [681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(216), - [683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), - [685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(215), - [687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), - [689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(218), - [691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), - [693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(220), - [695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 6), - [697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), - [699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), - [701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 3), - [703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), - [705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), - [707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), - [709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), - [711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), - [713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(229), - [715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 2), - [717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(230), - [719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 3), - [721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), - [723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 4), - [725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(259), - [727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), - [729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), - [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), - [733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(241), - [735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), - [737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), - [739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), - [741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(246), - [743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 6), - [745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), - [747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), - [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), - [751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), - [753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(255), - [755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), - [757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), - [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(263), - [761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(262), - [763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 3), - [765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), - [767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), - [769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(269), - [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), - [773] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), - [775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(411), - [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), - [779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(272), - [781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2), - [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), - [785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 4), - [787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 4), - [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(406), - [791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), - [793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(407), - [795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), - [797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), - [799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), - [801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), - [803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 5), - [805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 5), - [807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), - [809] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 2), - [811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), - [813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), - [815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(283), - [817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), - [819] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 3), - [821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), - [823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), - [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), - [827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), - [829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), - [831] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(296), - [833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), - [835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), - [837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), - [839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), - [841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), - [843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), - [845] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), - [847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), - [849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), - [851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), - [855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), - [857] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), - [859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), - [861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(325), - [863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), - [865] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(300), - [867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(301), - [869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), - [871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), - [873] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(303), - [875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(304), - [877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305), - [879] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(306), - [881] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(307), - [883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308), - [885] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(309), - [887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(309), - [889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), - [891] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(311), - [893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), - [895] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 7), - [897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), - [899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), - [901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(328), - [903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), - [905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(293), - [907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), - [909] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(294), - [911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), - [913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), - [915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_literal_expression, 4), - [917] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_literal_expression, 4), - [919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), - [921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), - [923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), - [925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(381), - [927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), - [929] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(349), - [931] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(350), - [933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(351), - [935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), - [937] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(352), - [939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), - [941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), - [943] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(355), - [945] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(356), - [947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), - [949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), - [951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(358), - [953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), - [955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(360), - [957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(374), - [959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), - [961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), - [963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345), - [965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 2), - [967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), - [969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(372), - [971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), - [973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), - [975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), - [977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), - [979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), - [981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378), - [983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 5), - [985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), - [987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), - [989] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(333), - [991] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(335), - [993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), - [995] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), - [997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), - [999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), - [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), - [1003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), - [1005] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), - [1007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), - [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), - [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), - [1013] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), - [1015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), - [1017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), - [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(397), - [1021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), - [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 3), - [1025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402), - [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), - [1029] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), - [1031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), - [1033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), - [1035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), - [1037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), - [1039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), - [1041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3), - [1043] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 3), - [1045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), - [1047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), - [1049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), - [1051] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), - [1053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), - [1055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), - [1057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), - [1059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), - [1061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), - [1063] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), - [1065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3), - [1067] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3), - [1069] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(424), - [1071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), - [1073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [1075] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), - [1077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), - [1079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), - [1081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), - [1083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), - [1085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), - [1087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), - [1089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), - [1091] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), - [1093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 6), - [1095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 6), - [1097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 3), - [1099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3), - [1101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), - [1103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(435), - [1105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), - [1107] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), - [1109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), - [1111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), - [1113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [1115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), - [1117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(120), - [1119] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), - [1121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [1123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), - [1125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(86), - [1127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), - [1129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), - [1131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), - [1133] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(48), - [1135] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(49), - [1137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [1139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), - [1141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), - [1143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), - [1145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(464), - [1147] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(465), - [1149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(466), - [1151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(467), - [1153] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(468), - [1155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(469), - [1157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(470), - [1159] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(471), - [1161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(472), - [1163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(473), - [1165] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(474), - [1167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(475), - [1169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [1173] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), - [1177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), - [1179] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), - [1181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [1185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), - [1189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), - [1191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), - [1193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), - [1195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), - [1197] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), - [1199] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(536), - [1201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), - [1203] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(538), - [1205] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(539), - [1207] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(540), - [1209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), - [1211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(502), - [1213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), - [1215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), - [1217] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(498), - [1219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), - [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), - [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), - [1225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), - [1227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), - [1229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), - [1231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), - [1233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), - [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), - [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483), - [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [1243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 2), - [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 2), - [1249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 2), - [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), - [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), - [1255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), - [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), - [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), - [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 3), - [1263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), - [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), - [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), - [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 5), - [1271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), - [1273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(496), - [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), - [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), - [1279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), - [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), - [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), - [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_goto_statement, 3), - [1287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), - [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), - [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_continue_statement, 2), - [1293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), - [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), - [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_break_statement, 2), - [1299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), - [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), - [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 2), - [1305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), - [1307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504), - [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), - [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 3), - [1313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), - [1315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), - [1317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(507), - [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), - [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [1323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), - [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), - [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), - [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), - [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), - [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), - [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), - [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 10), - [1339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), - [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), - [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), - [1345] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), - [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), - [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), - [1351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), - [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), - [1357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), - [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [1363] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), - [1365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), - [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613), - [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), - [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), - [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), - [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), - [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), - [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), - [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), - [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), - [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), - [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(548), - [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), - [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(549), - [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), - [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), - [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), - [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), - [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), - [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555), - [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), - [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), - [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(558), - [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(559), - [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), - [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), - [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), - [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), - [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), - [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), - [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), - [1433] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), - [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(575), - [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), - [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(545), - [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(546), - [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(582), - [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), - [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), - [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), - [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), - [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), - [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), - [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), - [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), - [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), - [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(601), - [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), - [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), - [1471] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), - [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), - [1477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), - [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), - [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), - [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 4), - [1485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), - [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), - [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), - [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_switch_statement, 5), - [1493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), - [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), - [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(620), - [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(621), - [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(622), - [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623), - [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(624), - [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(625), - [1509] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(626), - [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), - [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), - [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), - [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), - [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), - [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), - [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), - [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), - [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [1531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), - [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(646), - [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), - [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), - [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(643), - [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), - [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), - [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), - [1549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(642), - [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648), - [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), - [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), - [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), - [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), - [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), - [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), - [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), - [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), - [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(677), - [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(678), - [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(679), - [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(680), - [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(681), - [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(682), - [1583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(683), - [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), - [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), - [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(710), - [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), - [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), - [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), - [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), - [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(685), - [1601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), - [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), - [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), - [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), - [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), - [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), - [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), - [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), - [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), - [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), - [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), - [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), - [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), - [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), - [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(720), - [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [1637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), - [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), - [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), - [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_linkage_specification, 3), - [1647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), - [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), - [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), - [1653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), - [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), - [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 3), - [1661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), - [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), - [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_call, 2), - [1667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), - [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(735), - [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(736), - [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), - [1675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), - [1677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), - [1679] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 1), - [1681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), - [1683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(739), - [1685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), - [1687] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), - [1689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), - [1691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), - [1693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), - [1695] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), - [1697] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), - [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), - [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(744), - [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(760), - [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), - [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 3), - [1713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), - [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), - [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752), - [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(751), - [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), - [1723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(749), - [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), - [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 4), - [1729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), - [1731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), - [1733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), - [1735] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 5), - [1737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), - [1739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(753), - [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), - [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), - [1745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), - [1747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(759), - [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), - [1753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), - [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), + [597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(172), + [599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(173), + [601] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(174), + [603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 4), + [605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 4), + [607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(176), + [609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(177), + [611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), + [613] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), + [615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 3), + [617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(190), + [619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 1), + [623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 1), + [625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenated_string, 2), + [627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenated_string, 2), + [629] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(195), + [631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [633] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), + [637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), + [639] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(271), + [643] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), + [646] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), + [649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), + [651] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), + [653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), + [655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208), + [657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 1), + [659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(209), + [661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(210), + [663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), + [665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), + [667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), + [669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(26), + [671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), + [673] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 2), + [675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), + [677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 2), + [679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), + [681] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(255), + [683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), + [685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(213), + [687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 3), + [689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(214), + [691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 1), + [693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), + [695] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(215), + [697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(216), + [699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(220), + [701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), + [703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(219), + [705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), + [707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(222), + [709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), + [711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), + [713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 6), + [715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), + [717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), + [719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 3), + [721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), + [723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), + [725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), + [727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), + [729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), + [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), + [733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 2), + [735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), + [737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 3), + [739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), + [741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 4), + [743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(263), + [745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), + [747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(246), + [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), + [751] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(245), + [753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), + [755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(248), + [757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), + [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), + [761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 6), + [763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), + [765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), + [767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), + [769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), + [771] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(259), + [773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), + [775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), + [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(267), + [779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), + [781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 3), + [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), + [785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), + [787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), + [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), + [791] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), + [793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), + [795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), + [797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(276), + [799] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2), + [801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(277), + [803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 4), + [805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 4), + [807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), + [809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), + [811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(411), + [813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), + [815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), + [817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), + [819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), + [821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 5), + [823] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 5), + [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), + [827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 2), + [829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), + [831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), + [833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), + [835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), + [837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 3), + [839] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), + [841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), + [843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), + [849] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(300), + [851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [853] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(301), + [855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), + [857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), + [859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), + [861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), + [863] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), + [865] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), + [867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), + [869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), + [871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), + [873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), + [875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), + [877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), + [879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(329), + [881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), + [883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(304), + [885] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(305), + [887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(306), + [889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305), + [891] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(307), + [893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308), + [895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(309), + [897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), + [899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(311), + [901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(312), + [903] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(313), + [905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(313), + [907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(314), + [909] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(315), + [911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), + [913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 7), + [915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), + [917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(327), + [919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), + [921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), + [923] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), + [925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), + [927] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(298), + [929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), + [931] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), + [933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_literal_expression, 4), + [935] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_literal_expression, 4), + [937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), + [939] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), + [941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), + [943] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(385), + [945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), + [947] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), + [949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(354), + [951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), + [953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), + [955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(356), + [957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), + [959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(358), + [961] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), + [963] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(360), + [965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [967] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(362), + [969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), + [971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), + [973] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(364), + [975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378), + [977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), + [981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), + [983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 2), + [985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), + [987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), + [989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), + [991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), + [993] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), + [995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), + [997] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), + [999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 5), + [1003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), + [1005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389), + [1007] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), + [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(339), + [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), + [1013] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), + [1015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), + [1017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), + [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), + [1021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), + [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), + [1025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), + [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), + [1029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), + [1031] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), + [1033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), + [1035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), + [1037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), + [1039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), + [1041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 3), + [1043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(406), + [1045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), + [1047] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), + [1049] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), + [1051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), + [1053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), + [1055] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), + [1057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), + [1059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3), + [1061] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 3), + [1063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), + [1065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), + [1067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), + [1069] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), + [1071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [1073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), + [1075] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), + [1077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), + [1079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), + [1081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), + [1083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3), + [1085] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3), + [1087] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(428), + [1089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), + [1091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), + [1093] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), + [1095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), + [1097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(435), + [1099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), + [1101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), + [1103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), + [1105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [1107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), + [1109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), + [1111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 6), + [1113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 6), + [1115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 3), + [1117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3), + [1119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [1121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), + [1123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), + [1125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), + [1127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), + [1129] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(156), + [1131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), + [1133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), + [1135] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), + [1137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), + [1139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [1141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [1143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), + [1145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(88), + [1147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), + [1149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), + [1151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(48), + [1153] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(49), + [1155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), + [1157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), + [1159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), + [1161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), + [1163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(468), + [1165] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(469), + [1167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(470), + [1169] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(471), + [1171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(472), + [1173] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(473), + [1175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(474), + [1177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(475), + [1179] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(476), + [1181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(477), + [1183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), + [1185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(479), + [1187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1189] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [1191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), + [1195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), + [1197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), + [1199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [1203] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), + [1207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), + [1209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(672), + [1211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), + [1213] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(538), + [1215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(539), + [1217] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(540), + [1219] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(541), + [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(542), + [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(543), + [1225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(544), + [1227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), + [1229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), + [1231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), + [1233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504), + [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(502), + [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), + [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), + [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), + [1243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), + [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), + [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), + [1249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), + [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), + [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), + [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [1261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 2), + [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 2), + [1267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 2), + [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), + [1271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), + [1273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), + [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), + [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), + [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 3), + [1281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), + [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(498), + [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), + [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 5), + [1289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), + [1291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(500), + [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), + [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), + [1297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), + [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), + [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), + [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_goto_statement, 3), + [1305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), + [1307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), + [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_continue_statement, 2), + [1311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), + [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), + [1315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_break_statement, 2), + [1317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), + [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), + [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 2), + [1323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), + [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), + [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), + [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 3), + [1331] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), + [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), + [1335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(511), + [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), + [1339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), + [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), + [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), + [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), + [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), + [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521), + [1351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), + [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), + [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 10), + [1357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), + [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), + [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), + [1363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), + [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), + [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), + [1369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), + [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), + [1375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), + [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), + [1383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(621), + [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), + [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), + [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), + [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), + [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), + [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), + [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), + [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), + [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), + [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), + [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), + [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), + [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), + [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(556), + [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(557), + [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), + [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), + [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(559), + [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), + [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), + [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), + [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(565), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), + [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(566), + [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(567), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), + [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), + [1451] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), + [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), + [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(549), + [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(550), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), + [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), + [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(603), + [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), + [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), + [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), + [1489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), + [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), + [1495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), + [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), + [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), + [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 4), + [1503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), + [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), + [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), + [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_switch_statement, 5), + [1511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), + [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), + [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(624), + [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(625), + [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(626), + [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(627), + [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(628), + [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(629), + [1527] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(630), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), + [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), + [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), + [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), + [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), + [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), + [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [1549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), + [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), + [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), + [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), + [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), + [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), + [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(642), + [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), + [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(646), + [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), + [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), + [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), + [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), + [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), + [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), + [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), + [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), + [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), + [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), + [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(681), + [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(682), + [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683), + [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(684), + [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(685), + [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(686), + [1601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687), + [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), + [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), + [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), + [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), + [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), + [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), + [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), + [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(689), + [1619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), + [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), + [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), + [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), + [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), + [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), + [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), + [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), + [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), + [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), + [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [1655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), + [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), + [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), + [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_linkage_specification, 3), + [1665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), + [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), + [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), + [1671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), + [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(736), + [1675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), + [1677] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 3), + [1679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), + [1681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), + [1683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_call, 2), + [1685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), + [1687] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(739), + [1689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(740), + [1691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), + [1693] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), + [1695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), + [1697] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 1), + [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), + [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(743), + [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), + [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), + [1707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), + [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), + [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), + [1715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), + [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), + [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(748), + [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), + [1725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(764), + [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), + [1729] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 3), + [1731] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), + [1733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), + [1735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), + [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(755), + [1739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752), + [1741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(753), + [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), + [1745] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 4), + [1747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), + [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), + [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), + [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 5), + [1755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), [1759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), - [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(758), - [1763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), - [1765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), - [1767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 3), - [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), - [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), - [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 5), - [1777] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), - [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), - [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), - [1783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), - [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), - [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), - [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), - [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), - [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), - [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), - [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), - [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(871), - [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), - [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(872), - [1805] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1105), - [1807] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_type_list_repeat1, 3), SHIFT(1098), - [1813] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_type_list_repeat1, 3), SHIFT(754), - [1820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), - [1822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), - [1824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), - [1826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), - [1828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), - [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), - [1832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), - [1834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1058), - [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), - [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1059), - [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(339), - [1842] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1060), - [1844] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), - [1848] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(848), - [1863] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), - [1876] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), - [1880] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(462), - [1892] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_do_statement, 6), SHIFT(1047), - [1898] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), - [1905] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(849), - [1914] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), - [1920] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), - [1929] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), - [1939] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(677), - [1942] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(678), - [1945] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(679), - [1948] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(680), - [1951] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(681), - [1954] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(469), - [1957] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(682), - [1960] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(471), - [1963] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(472), - [1966] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(473), - [1969] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(474), - [1972] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(849), - [1980] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(784), - [1983] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), - [1989] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(786), - [1992] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(850), - [2000] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(850), - [2008] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(793), - [2011] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(53), - [2014] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(864), - [2018] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [2022] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [2026] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [2030] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [2036] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [2042] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(866), - [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), - [2058] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [2064] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(1034), - [2078] = {.count = 12, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [2091] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [2104] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_struct_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), REDUCE(sym_declaration, 5), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [2123] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(868), - [2137] = {.count = 18, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_struct_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), REDUCE(sym_declaration, 5), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [2156] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), - [2164] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(869), - [2178] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(870), - [2192] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(871), - [2206] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(871), - [2220] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(872), - [2234] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(53), - [2248] = {.count = 19, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_struct_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), REDUCE(sym_declaration, 5), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), SHIFT(54), - [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), - [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), - [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989), - [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), - [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(992), - [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(993), - [2286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(994), - [2288] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [2293] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [2298] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), - [2313] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), - [2326] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [2331] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), - [2334] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2342] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), - [2357] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2361] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2365] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), - [2368] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2374] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2380] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), - [2394] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(978), - [2397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), - [2399] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(206), - [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), - [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), - [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), - [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(850), - [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(793), - [2414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(980), - [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(972), - [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), - [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), - [2422] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), SHIFT(8), - [2425] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), SHIFT(54), - [2428] = {.count = 10, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), - [2439] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [2445] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [2450] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), - [2462] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [2469] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), REDUCE(sym_subscript_expression, 4), - [2472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), - [2474] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2477] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2480] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2483] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2486] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(864), - [2491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), - [2493] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(848), - [2496] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(849), - [2499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(784), - [2501] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(850), - [2504] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(850), - [2507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [2509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(945), - [2511] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(7), - [2514] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(sym_preproc_include, 2), - [2517] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(8), - [2520] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(9), - [2523] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(10), - [2526] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(11), - [2529] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(12), - [2532] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(13), - [2535] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(14), - [2538] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_field_expression, 3), SHIFT(938), - [2548] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(sym_field_expression, 3), REDUCE(aux_sym_preproc_params_repeat1, 3), SHIFT(753), - [2561] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(sym_field_expression, 3), REDUCE(aux_sym_preproc_params_repeat1, 3), SHIFT(754), - [2573] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_field_expression, 3), SHIFT(499), - [2583] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), SHIFT(939), - [2586] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), - [2590] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_field_expression, 3), - [2598] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [2608] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), - [2611] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), SHIFT(431), - [2617] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_field_expression, 3), SHIFT(686), - [2627] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), - [2630] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [2634] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), SHIFT(14), - [2641] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [2644] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [2647] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [2650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), - [2652] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), - [2655] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), - [2658] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), - [2661] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(292), - [2665] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(702), - [2669] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), - [2674] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), - [2677] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), - [2682] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(293), - [2686] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), - [2689] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(294), - [2693] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(295), - [2697] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(296), - [2701] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(296), - [2705] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(297), - [2709] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(53), - [2713] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), SHIFT(54), - [2719] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(43), - [2722] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), REDUCE(sym_parameter_declaration, 2), REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(sym_parameter_declaration, 3), REDUCE(aux_sym_declaration_repeat1, 3), REDUCE(aux_sym_struct_declaration_repeat1, 3), SHIFT(924), - [2731] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), SHIFT(263), - [2736] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), REDUCE(aux_sym_struct_declaration_repeat1, 3), SHIFT(925), - [2743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(460), - [2746] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(44), - [2749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(45), - [2752] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 3), SHIFT(926), - [2757] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(209), - [2760] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), - [2764] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), REDUCE(sym_parameter_declaration, 3), REDUCE(sym_type_name, 3), SHIFT(262), - [2771] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(210), - [2774] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(35), - [2778] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(923), - [2782] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2785] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2788] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2791] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2795] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2799] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), - [2806] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), REDUCE(aux_sym_array_declarator_repeat1, 2), - [2811] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), - [2814] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), REDUCE(aux_sym_array_declarator_repeat1, 2), - [2819] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_parameter_declaration, 2), - [2822] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), - [2827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), - [2829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), - [2831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [2833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), - [2835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [2837] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), - [2840] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), - [2843] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), - [2846] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), REDUCE(sym__enum_specifier_contents, 3), - [2849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), - [2851] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), SHIFT(227), - [2855] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), - [2859] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [2874] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [2889] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(720), - [2903] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(542), - [2919] = {.count = 14, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [2934] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(57), - [2950] = {.count = 22, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_init_declarator, 3), REDUCE(sym_enumerator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), REDUCE(sym__initializer_list_contents, 5), SHIFT(859), - [2973] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(860), - [2992] = {.count = 17, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(sym_init_declarator, 3), REDUCE(sym_comma_expression, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(861), - [3010] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(sym_enumerator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), REDUCE(sym__initializer_list_contents, 5), - [3029] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(791), - [3045] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(59), - [3061] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(862), - [3077] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(781), - [3093] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(863), - [3109] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(780), - [3125] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(781), - [3141] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(785), - [3157] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(783), - [3173] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(787), - [3189] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(788), - [3205] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(788), - [3221] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(789), - [3237] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(71), - [3253] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(72), - [3269] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(386), - [3272] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(485), - [3275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), - [3277] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym_init_declarator, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_compound_literal_expression, 4), REDUCE(sym__initializer_list_contents, 5), - [3283] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_compound_literal_expression, 4), - [3286] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_compound_literal_expression, 4), REDUCE(sym__initializer_list_contents, 5), - [3291] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), REDUCE(aux_sym__initializer_list_contents_repeat1, 2), - [3294] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), - [3298] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), - [3302] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), - [3306] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), SHIFT(739), - [3309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), - [3311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(837), - [3313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), - [3315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(839), - [3317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), - [3319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), - [3321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [3323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), - [3325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827), - [3327] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [3330] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(46), - [3333] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(462), - [3336] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), SHIFT(48), - [3339] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), SHIFT(51), - [3342] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(51), - [3345] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3349] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3353] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3357] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), - [3360] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), - [3363] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), - [3366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), - [3368] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3371] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3374] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3377] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), - [3382] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), - [3387] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), - [3393] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), - [3396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [3398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), - [3400] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), - [3406] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [3409] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(233), - [3412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [3414] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), - [3418] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [3421] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [3424] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [3427] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), SHIFT(848), - [3431] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), - [3434] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), SHIFT(849), - [3438] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(849), - [3441] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(850), - [3444] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(850), - [3447] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(54), - [3450] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(57), - [3453] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(791), - [3456] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(59), - [3459] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(781), - [3462] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(780), - [3465] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(781), - [3468] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(785), - [3471] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(783), - [3474] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(787), - [3477] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(788), - [3480] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(788), - [3483] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(789), - [3486] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(71), - [3489] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(72), - [3492] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(57), - [3495] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(791), - [3498] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(59), - [3501] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(781), - [3504] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(780), - [3507] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(781), - [3510] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(785), - [3513] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(783), - [3516] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(787), - [3519] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(788), - [3522] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(788), - [3525] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(789), - [3528] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(71), - [3531] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(72), - [3534] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(57), - [3537] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(791), - [3540] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(59), - [3543] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(781), - [3546] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(780), - [3549] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(781), - [3552] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(785), - [3555] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(783), - [3558] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(787), - [3561] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(788), - [3564] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(788), - [3567] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(789), - [3570] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(71), - [3573] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(72), - [3576] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(57), - [3579] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(791), - [3582] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(59), - [3585] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(781), - [3588] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(780), - [3591] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(781), - [3594] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(785), - [3597] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(783), - [3600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(787), - [3603] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(788), - [3606] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(788), - [3609] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(789), - [3612] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(71), - [3615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(72), - [3618] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(57), - [3621] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(791), - [3624] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(59), - [3627] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(781), - [3630] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(780), - [3633] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(781), - [3636] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(785), - [3639] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(783), - [3642] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(787), - [3645] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(788), - [3648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(788), - [3651] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(789), - [3654] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(71), - [3657] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(72), - [3660] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(57), - [3663] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(791), - [3666] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(59), - [3669] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(781), - [3672] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(780), - [3675] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(781), - [3678] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(785), - [3681] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(783), - [3684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(787), - [3687] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(788), - [3690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(788), - [3693] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(789), - [3696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(71), - [3699] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(72), - [3702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [3704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), - [3706] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(46), - [3711] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), - [3714] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(462), - [3719] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(460), - [3722] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), - [3726] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(48), - [3731] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), - [3734] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(49), - [3737] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(50), - [3740] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(51), - [3745] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(51), - [3750] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(52), - [3753] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(683), - [3756] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(866), - [3760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), - [3762] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(691), - [3766] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [3769] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [3772] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3779] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(868), - [3783] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3790] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(869), - [3794] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(870), - [3798] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(871), - [3802] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(871), - [3806] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(872), - [3810] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(53), - [3814] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), SHIFT(54), - [3822] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), - [3831] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [3836] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [3840] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), - [3850] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [3856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(686), - [3859] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(57), - [3862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(486), - [3865] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(485), - [3868] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(791), - [3871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(59), - [3874] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(781), - [3877] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(780), - [3880] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(781), - [3883] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(785), - [3886] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(783), - [3889] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(787), - [3892] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(788), - [3895] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(788), - [3898] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(789), - [3901] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(71), - [3904] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(72), - [3907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), - [3909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), - [3911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(875), - [3913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(876), - [3915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), - [3917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), - [3919] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(878), - [3921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), - [3923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), - [3925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(881), - [3927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), - [3929] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(882), - [3931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), - [3933] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3936] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3939] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3942] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(875), - [3945] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(876), - [3948] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(877), - [3951] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(876), - [3954] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(878), - [3957] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(879), - [3960] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(880), - [3963] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(881), - [3966] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(881), - [3969] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(882), - [3972] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(57), - [3975] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(875), - [3978] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(59), - [3981] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(876), - [3984] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(877), - [3987] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(876), - [3990] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(878), - [3993] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(879), - [3996] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(880), - [3999] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(881), - [4002] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(881), - [4005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(882), - [4008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(71), - [4011] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(72), - [4014] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(57), - [4017] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(875), - [4020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(59), - [4023] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(876), - [4026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(877), - [4029] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(876), - [4032] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(878), - [4035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(879), - [4038] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(880), - [4041] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(881), - [4044] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(881), - [4047] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(882), - [4050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(71), - [4053] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(72), - [4056] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(57), - [4059] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(875), - [4062] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(59), - [4065] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(876), - [4068] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(877), - [4071] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(876), - [4074] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(878), - [4077] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(879), - [4080] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(880), - [4083] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(881), - [4086] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(881), - [4089] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(882), - [4092] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(71), - [4095] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(72), - [4098] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(875), - [4101] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(876), - [4104] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(877), - [4107] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(876), - [4110] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(878), - [4113] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(879), - [4116] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(880), - [4119] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(881), - [4122] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(881), - [4125] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(882), - [4128] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(57), - [4131] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(875), - [4134] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(59), - [4137] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(876), - [4140] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(877), - [4143] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(876), - [4146] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(878), - [4149] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(879), - [4152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(880), - [4155] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(881), - [4158] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(881), - [4161] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(882), - [4164] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(71), - [4167] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(72), - [4170] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(875), - [4173] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(876), - [4176] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(877), - [4179] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(876), - [4182] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(878), - [4185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(879), - [4188] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(880), - [4191] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(881), - [4194] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(881), - [4197] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(882), - [4200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), - [4202] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(875), - [4205] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(876), - [4208] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(877), - [4211] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(876), - [4214] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(878), - [4217] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(879), - [4220] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(880), - [4223] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(881), - [4226] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(881), - [4229] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(882), - [4232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4235] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4238] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4241] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(57), - [4244] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(875), - [4247] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(59), - [4250] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(876), - [4253] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(877), - [4256] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(876), - [4259] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(878), - [4262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(879), - [4265] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(880), - [4268] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(881), - [4271] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(881), - [4274] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(882), - [4277] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(71), - [4280] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(72), - [4283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), - [4285] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(866), - [4288] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(868), - [4291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(869), - [4293] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(871), - [4296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(871), - [4299] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(875), - [4302] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(876), - [4305] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(877), - [4308] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(876), - [4311] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(878), - [4314] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(879), - [4317] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(880), - [4320] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(881), - [4323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(881), - [4326] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(882), - [4329] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(875), - [4332] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(876), - [4335] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(877), - [4338] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(876), - [4341] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(878), - [4344] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(879), - [4347] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(880), - [4350] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(881), - [4353] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(881), - [4356] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(882), - [4359] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(57), - [4362] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(875), - [4365] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(59), - [4368] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(876), - [4371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(877), - [4374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(876), - [4377] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(878), - [4380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(879), - [4383] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(880), - [4386] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(881), - [4389] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(881), - [4392] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(882), - [4395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(71), - [4398] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(72), - [4401] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(57), - [4404] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(875), - [4407] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(59), - [4410] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(876), - [4413] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(877), - [4416] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(876), - [4419] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(878), - [4422] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(879), - [4425] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(880), - [4428] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(881), - [4431] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(881), - [4434] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(882), - [4437] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(71), - [4440] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(72), - [4443] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(875), - [4446] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(876), - [4449] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(877), - [4452] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(876), - [4455] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(878), - [4458] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(879), - [4461] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(880), - [4464] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(881), - [4467] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(881), - [4470] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(882), - [4473] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [4476] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [4479] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [4482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [4484] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4491] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4498] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), SHIFT(720), - [4506] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4513] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(911), - [4516] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), - [4519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), - [4521] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), - [4524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), - [4526] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), - [4529] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), - [4532] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [4535] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [4538] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), - [4541] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), - [4544] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), - [4547] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_struct_declaration, 3), REDUCE(sym__empty_declaration, 3), - [4552] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_struct_declaration, 3), REDUCE(sym__empty_declaration, 3), - [4557] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_struct_declaration, 3), REDUCE(sym__empty_declaration, 3), - [4562] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), SHIFT(924), - [4566] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), - [4569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), - [4571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), - [4573] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), REDUCE(sym_parameter_declaration, 3), REDUCE(sym_type_name, 3), - [4578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), - [4580] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), - [4583] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), - [4586] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), - [4589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), - [4591] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), - [4596] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), - [4601] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), - [4606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), - [4608] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), - [4611] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), - [4614] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), - [4617] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), - [4620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), - [4622] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), SHIFT(35), - [4625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [4628] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [4631] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [4634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(944), - [4636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), - [4638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(941), - [4640] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [4643] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [4646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), - [4648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), - [4651] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), - [4654] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(754), - [4657] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [4660] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [4663] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(791), - [4666] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(781), - [4669] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(780), - [4672] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(781), - [4675] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(785), - [4678] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(783), - [4681] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(787), - [4684] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(788), - [4687] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(788), - [4690] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(789), - [4693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [4695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(848), - [4698] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(57), - [4702] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), - [4705] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(791), - [4709] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(59), - [4713] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(781), - [4717] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(780), - [4721] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(781), - [4725] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(785), - [4729] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(783), - [4733] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(787), - [4737] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(788), - [4741] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(788), - [4745] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(789), - [4749] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(71), - [4753] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(72), - [4757] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(791), - [4760] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(781), - [4763] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(780), - [4766] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(781), - [4769] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(785), - [4772] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(783), - [4775] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(787), - [4778] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(788), - [4781] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(788), - [4784] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(789), - [4787] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(791), - [4790] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(781), - [4793] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(780), - [4796] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(781), - [4799] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(785), - [4802] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(783), - [4805] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(787), - [4808] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(788), - [4811] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(788), - [4814] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(789), - [4817] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(791), - [4820] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(781), - [4823] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(780), - [4826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(781), - [4829] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(785), - [4832] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(783), - [4835] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(787), - [4838] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(788), - [4841] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(788), - [4844] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(789), - [4847] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(791), - [4850] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(781), - [4853] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(780), - [4856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(781), - [4859] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(785), - [4862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(783), - [4865] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(787), - [4868] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(788), - [4871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(788), - [4874] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(789), - [4877] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(791), - [4880] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(781), - [4883] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(780), - [4886] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(781), - [4889] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(785), - [4892] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(783), - [4895] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(787), - [4898] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(788), - [4901] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(788), - [4904] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(789), - [4907] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(791), - [4910] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(781), - [4913] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(780), - [4916] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(781), - [4919] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(785), - [4922] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(783), - [4925] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(787), - [4928] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(788), - [4931] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(788), - [4934] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(789), - [4937] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(57), - [4941] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), - [4944] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(791), - [4948] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(59), - [4952] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(781), - [4956] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(780), - [4960] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(781), - [4964] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(785), - [4968] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(783), - [4972] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(787), - [4976] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(788), - [4980] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(788), - [4984] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(789), - [4988] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(71), - [4992] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(72), - [4996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [4998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [5000] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(46), - [5003] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(462), - [5006] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(48), - [5009] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(49), - [5012] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(51), - [5015] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(51), - [5018] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [5022] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [5026] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [5030] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(966), - [5033] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [5039] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [5045] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [5051] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_enumerator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [5057] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), - [5060] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [5065] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [5069] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), - [5073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), - [5075] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), - [5079] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), - [5083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), - [5085] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [5090] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [5093] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [5099] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [5103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), - [5105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), - [5107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(984), - [5109] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), - [5112] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), - [5115] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(57), - [5119] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), - [5122] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(791), - [5126] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(59), - [5130] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(781), - [5134] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(780), - [5138] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(781), - [5142] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(785), - [5146] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(783), - [5150] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(787), - [5154] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(788), - [5158] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(788), - [5162] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(789), - [5166] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(71), - [5170] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(72), - [5174] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(982), - [5177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(985), - [5179] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(267), - [5184] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), - [5188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [5190] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), - [5193] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), - [5196] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [5203] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [5209] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), - [5212] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [5216] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [5223] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [5226] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [5229] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [5236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), - [5238] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), - [5241] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(431), - [5244] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(495), - [5247] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), - [5250] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), - [5253] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), - [5256] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), - [5259] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), - [5262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), - [5264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), - [5266] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), SHIFT(486), - [5269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(999), - [5271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1000), - [5273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), - [5275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [5277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1002), - [5279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [5281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), - [5283] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1005), - [5285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), - [5287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1006), - [5289] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(999), - [5292] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1000), - [5295] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1001), - [5298] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1000), - [5301] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1002), - [5304] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1003), - [5307] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1004), - [5310] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1005), - [5313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1005), - [5316] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1006), - [5319] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(999), - [5322] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1000), - [5325] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1001), - [5328] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1000), - [5331] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1002), - [5334] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1003), - [5337] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1004), - [5340] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1005), - [5343] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1005), - [5346] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1006), - [5349] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(999), - [5352] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1000), - [5355] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1001), - [5358] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1000), - [5361] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1002), - [5364] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1003), - [5367] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1004), - [5370] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1005), - [5373] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1005), - [5376] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1006), - [5379] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(999), - [5382] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1000), - [5385] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1001), - [5388] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1000), - [5391] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1002), - [5394] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1003), - [5397] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1004), - [5400] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1005), - [5403] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1005), - [5406] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1006), - [5409] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(999), - [5412] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1000), - [5415] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1001), - [5418] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1000), - [5421] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1002), - [5424] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1003), - [5427] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1004), - [5430] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1005), - [5433] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1005), - [5436] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1006), - [5439] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(999), - [5442] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1000), - [5445] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1001), - [5448] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1000), - [5451] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1002), - [5454] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1003), - [5457] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1004), - [5460] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1005), - [5463] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1005), - [5466] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1006), - [5469] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(999), - [5472] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1000), - [5475] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1001), - [5478] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1000), - [5481] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1002), - [5484] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1003), - [5487] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1004), - [5490] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1005), - [5493] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1005), - [5496] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1006), - [5499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), - [5501] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(999), - [5504] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1000), - [5507] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1001), - [5510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1000), - [5513] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1002), - [5516] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1003), - [5519] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1004), - [5522] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1005), - [5525] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1005), - [5528] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1006), - [5531] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5534] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5537] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(924), - [5542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), - [5544] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), - [5547] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), - [5550] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), - [5553] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(999), - [5556] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1000), - [5559] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1001), - [5562] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1000), - [5565] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1002), - [5568] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1003), - [5571] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1004), - [5574] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1005), - [5577] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1005), - [5580] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1006), - [5583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [5585] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(986), - [5588] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(989), - [5591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(990), - [5593] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(992), - [5596] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(992), - [5599] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(999), - [5602] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1000), - [5605] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1001), - [5608] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1000), - [5611] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1002), - [5614] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1003), - [5617] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1004), - [5620] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1005), - [5623] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1005), - [5626] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1006), - [5629] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(999), - [5632] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1000), - [5635] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1001), - [5638] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1000), - [5641] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1002), - [5644] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1003), - [5647] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1004), - [5650] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1005), - [5653] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1005), - [5656] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1006), - [5659] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(999), - [5662] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1000), - [5665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1001), - [5668] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1000), - [5671] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1002), - [5674] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1003), - [5677] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1004), - [5680] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1005), - [5683] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1005), - [5686] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1006), - [5689] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(999), - [5692] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1000), - [5695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1001), - [5698] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1000), - [5701] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1002), - [5704] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1003), - [5707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1004), - [5710] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1005), - [5713] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1005), - [5716] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1006), - [5719] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(999), - [5722] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1000), - [5725] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1001), - [5728] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1000), - [5731] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1002), - [5734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1003), - [5737] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1004), - [5740] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1005), - [5743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1005), - [5746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1006), - [5749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), - [5751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), - [5753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), - [5755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), - [5757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), - [5759] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [5763] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [5767] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [5771] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [5774] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [5777] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [5780] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [5784] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [5788] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [5792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), - [5794] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [5803] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [5812] = {.count = 9, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(720), - [5822] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [5831] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(486), - [5834] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(485), - [5837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [5839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [5841] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_type_list_repeat1, 3), - [5846] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [5850] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [5854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1095), - [5856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), - [5858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), - [5860] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), - [5867] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), - [5872] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(431), - [5876] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), REDUCE(aux_sym_struct_declaration_repeat1, 3), - [5881] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 3), - [5884] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), - [5887] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), - [5890] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), SHIFT(911), - [5895] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), - [5899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1065), - [5901] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1066), - [5903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), - [5905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), - [5907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1068), - [5909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [5911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [5913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1071), - [5915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), - [5917] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1072), - [5919] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1065), - [5922] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1066), - [5925] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1067), - [5928] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1066), - [5931] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1068), - [5934] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1069), - [5937] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1070), - [5940] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1071), - [5943] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1071), - [5946] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1072), - [5949] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1065), - [5952] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1066), - [5955] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1067), - [5958] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1066), - [5961] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1068), - [5964] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1069), - [5967] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1070), - [5970] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1071), - [5973] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1071), - [5976] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1072), - [5979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), - [5981] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1065), - [5984] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1066), - [5987] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1067), - [5990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1066), - [5993] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1068), - [5996] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1069), - [5999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1070), - [6002] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1071), - [6005] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1071), - [6008] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1072), - [6011] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1065), - [6014] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1066), - [6017] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1067), - [6020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1066), - [6023] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1068), - [6026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1069), - [6029] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1070), - [6032] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1071), - [6035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1071), - [6038] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1072), - [6041] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1065), - [6044] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1066), - [6047] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1067), - [6050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1066), - [6053] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1068), - [6056] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1069), - [6059] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1070), - [6062] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1071), - [6065] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1071), - [6068] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1072), - [6071] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1065), - [6074] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1066), - [6077] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1067), - [6080] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1066), - [6083] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1068), - [6086] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1069), - [6089] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1070), - [6092] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1071), - [6095] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1071), - [6098] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1072), - [6101] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1065), - [6104] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1066), - [6107] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1067), - [6110] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1066), - [6113] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1068), - [6116] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1069), - [6119] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1070), - [6122] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1071), - [6125] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1071), - [6128] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1072), - [6131] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1065), - [6134] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1066), - [6137] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1067), - [6140] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1066), - [6143] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1068), - [6146] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1069), - [6149] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1070), - [6152] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1071), - [6155] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1071), - [6158] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1072), - [6161] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1065), - [6164] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1066), - [6167] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1067), - [6170] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1066), - [6173] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1068), - [6176] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1069), - [6179] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1070), - [6182] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1071), - [6185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1071), - [6188] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1072), - [6191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), - [6193] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1065), - [6196] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1066), - [6199] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1067), - [6202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1066), - [6205] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1068), - [6208] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1069), - [6211] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1070), - [6214] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1071), - [6217] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1071), - [6220] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1072), - [6223] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1065), - [6226] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1066), - [6229] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1067), - [6232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1066), - [6235] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1068), - [6238] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1069), - [6241] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1070), - [6244] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1071), - [6247] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1071), - [6250] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1072), - [6253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), - [6255] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1073), - [6258] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1055), - [6261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1056), - [6263] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1058), - [6266] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1058), - [6269] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1065), - [6272] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1066), - [6275] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1067), - [6278] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1066), - [6281] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1068), - [6284] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1069), - [6287] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1070), - [6290] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1071), - [6293] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1071), - [6296] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1072), - [6299] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1065), - [6302] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1066), - [6305] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1067), - [6308] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1066), - [6311] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1068), - [6314] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1069), - [6317] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1070), - [6320] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1071), - [6323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1071), - [6326] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1072), - [6329] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1065), - [6332] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1066), - [6335] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1067), - [6338] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1066), - [6341] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1068), - [6344] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1069), - [6347] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1070), - [6350] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1071), - [6353] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1071), - [6356] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1072), - [6359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [6361] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1100), - [6363] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), - [6366] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), - [6369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), - [6371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), SHIFT(754), - [6374] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_call_expression, 3), - [6378] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), - [6381] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), - [6384] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1101), - [6387] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(753), - [6391] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(754), - [6396] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), - [6399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), - [6401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [6403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), - [6405] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [6409] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [6413] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), SHIFT(720), - [6418] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [6422] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(387), - [6425] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), SHIFT(35), - [6428] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), + [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), + [1763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), + [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), + [1767] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(763), + [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), + [1771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), + [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), + [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), + [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(762), + [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), + [1783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), + [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 3), + [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(765), + [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), + [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 5), + [1795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), + [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), + [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), + [1801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), + [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), + [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), + [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), + [1809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [1811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), + [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), + [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(875), + [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), + [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(876), + [1823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1109), + [1825] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_type_list_repeat1, 3), SHIFT(1102), + [1831] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_type_list_repeat1, 3), SHIFT(758), + [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), + [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), + [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), + [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), + [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), + [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1062), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1063), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(343), + [1860] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1064), + [1862] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), + [1866] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(852), + [1881] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), + [1894] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), + [1898] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(466), + [1910] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_do_statement, 6), SHIFT(1051), + [1916] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), + [1923] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(853), + [1932] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), + [1938] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), + [1947] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_call_expression, 5), + [1957] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(681), + [1960] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(682), + [1963] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(683), + [1966] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(684), + [1969] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(685), + [1972] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(473), + [1975] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(686), + [1978] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(475), + [1981] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(476), + [1984] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(477), + [1987] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(478), + [1990] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(853), + [1998] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(788), + [2001] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), + [2007] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(790), + [2010] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(854), + [2018] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(854), + [2026] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(797), + [2029] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(53), + [2032] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(54), + [2035] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(868), + [2039] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [2043] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [2047] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [2051] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [2057] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [2063] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(870), + [2077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), + [2079] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [2085] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(1038), + [2099] = {.count = 12, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [2112] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [2125] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_struct_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), REDUCE(sym_declaration, 5), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [2144] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(872), + [2158] = {.count = 18, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_struct_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), REDUCE(sym_declaration, 5), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [2177] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), + [2185] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(873), + [2199] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(874), + [2213] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(875), + [2227] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(875), + [2241] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(876), + [2255] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(53), + [2269] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), SHIFT(54), + [2283] = {.count = 19, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_struct_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3), REDUCE(sym__empty_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), REDUCE(sym_declaration, 5), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), SHIFT(55), + [2303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), + [2305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), + [2307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), + [2309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), + [2311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), + [2313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), + [2315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), + [2317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), + [2319] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(997), + [2321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(998), + [2323] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [2328] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [2333] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), + [2348] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), + [2361] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [2366] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), + [2369] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2377] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), + [2392] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2396] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2400] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), + [2403] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2409] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2415] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), + [2429] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(982), + [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), + [2434] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(210), + [2437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [2439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), + [2441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), + [2443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(854), + [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(797), + [2449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(984), + [2451] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(976), + [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), + [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), + [2457] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), SHIFT(8), + [2460] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), SHIFT(55), + [2463] = {.count = 10, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), + [2474] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [2480] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [2485] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), + [2497] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [2504] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), REDUCE(sym_subscript_expression, 4), + [2507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), + [2509] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2512] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2515] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2518] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2521] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(868), + [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), + [2528] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(852), + [2531] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(853), + [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(788), + [2536] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(854), + [2539] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(854), + [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), + [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(949), + [2546] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2550] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(7), + [2553] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2558] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2562] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(8), + [2565] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(9), + [2568] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(10), + [2571] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(11), + [2574] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(12), + [2577] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(13), + [2580] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT(193), + [2584] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(14), + [2587] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_field_expression, 3), SHIFT(942), + [2597] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(sym_field_expression, 3), REDUCE(aux_sym_preproc_params_repeat1, 3), SHIFT(757), + [2610] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(sym_field_expression, 3), REDUCE(aux_sym_preproc_params_repeat1, 3), SHIFT(758), + [2622] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_field_expression, 3), SHIFT(503), + [2632] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), SHIFT(943), + [2635] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), + [2639] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_field_expression, 3), + [2647] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [2657] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), + [2660] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), SHIFT(435), + [2666] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_field_expression, 3), SHIFT(690), + [2676] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), + [2679] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [2683] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(sym_sized_type_specifier, 2), REDUCE(sym_enum_specifier, 2), REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), SHIFT(14), + [2690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [2693] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [2696] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [2699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(941), + [2701] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), + [2704] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), + [2707] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), + [2710] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(296), + [2714] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(706), + [2718] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), + [2723] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), + [2726] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), + [2731] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(297), + [2735] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), + [2738] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(298), + [2742] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(299), + [2746] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(300), + [2750] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(300), + [2754] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(301), + [2758] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(53), + [2762] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(54), + [2766] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), SHIFT(55), + [2772] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(43), + [2775] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), REDUCE(sym_parameter_declaration, 2), REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(sym_parameter_declaration, 3), REDUCE(aux_sym_declaration_repeat1, 3), REDUCE(aux_sym_struct_declaration_repeat1, 3), SHIFT(928), + [2784] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), SHIFT(267), + [2789] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), REDUCE(aux_sym_struct_declaration_repeat1, 3), SHIFT(929), + [2796] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(464), + [2799] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(44), + [2802] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(45), + [2805] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 3), SHIFT(930), + [2810] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(213), + [2813] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), + [2817] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), REDUCE(sym_parameter_declaration, 3), REDUCE(sym_type_name, 3), SHIFT(266), + [2824] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(214), + [2827] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(35), + [2831] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(927), + [2835] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2838] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2841] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2844] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2848] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2852] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), + [2859] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), REDUCE(aux_sym_array_declarator_repeat1, 2), + [2864] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), + [2867] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), REDUCE(aux_sym_array_declarator_repeat1, 2), + [2872] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_parameter_declaration, 2), + [2875] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), + [2880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), + [2882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [2884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), + [2886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), + [2888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), + [2890] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), + [2893] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), + [2896] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), + [2899] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), REDUCE(sym__enum_specifier_contents, 3), + [2902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), + [2904] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), SHIFT(231), + [2908] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), + [2912] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [2927] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [2942] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(724), + [2956] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(546), + [2972] = {.count = 14, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [2987] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(58), + [3003] = {.count = 22, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_init_declarator, 3), REDUCE(sym_enumerator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), REDUCE(sym__initializer_list_contents, 5), SHIFT(863), + [3026] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(864), + [3045] = {.count = 17, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(sym_init_declarator, 3), REDUCE(sym_comma_expression, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(865), + [3063] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(sym_enumerator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), REDUCE(sym__initializer_list_contents, 5), + [3082] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(795), + [3098] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(60), + [3114] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(866), + [3130] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(785), + [3146] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(867), + [3162] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(784), + [3178] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(785), + [3194] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(789), + [3210] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(787), + [3226] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(791), + [3242] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(792), + [3258] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(792), + [3274] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(793), + [3290] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(72), + [3306] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(73), + [3322] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(390), + [3325] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(489), + [3328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [3330] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym_init_declarator, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_compound_literal_expression, 4), REDUCE(sym__initializer_list_contents, 5), + [3336] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_compound_literal_expression, 4), + [3339] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_compound_literal_expression, 4), REDUCE(sym__initializer_list_contents, 5), + [3344] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), REDUCE(aux_sym__initializer_list_contents_repeat1, 2), + [3347] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), + [3351] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), + [3355] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), + [3359] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), SHIFT(743), + [3362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [3364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(841), + [3366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [3368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(843), + [3370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), + [3372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), + [3374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), + [3376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [3378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), + [3380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [3383] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(46), + [3386] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(466), + [3389] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), SHIFT(48), + [3392] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), SHIFT(51), + [3395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(51), + [3398] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3402] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3406] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3410] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), + [3413] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), + [3416] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), + [3419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), + [3421] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3424] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3427] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3430] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), + [3435] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), + [3440] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), + [3446] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), + [3449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [3451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), + [3453] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), + [3459] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [3462] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(237), + [3465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), + [3467] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), + [3471] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [3474] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [3477] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [3480] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), SHIFT(852), + [3484] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), + [3487] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), SHIFT(853), + [3491] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(853), + [3494] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(854), + [3497] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(854), + [3500] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(55), + [3503] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(58), + [3506] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(795), + [3509] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(60), + [3512] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(785), + [3515] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(784), + [3518] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(785), + [3521] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(789), + [3524] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(787), + [3527] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(791), + [3530] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(792), + [3533] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(792), + [3536] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(793), + [3539] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(72), + [3542] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(73), + [3545] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(58), + [3548] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(795), + [3551] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(60), + [3554] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(785), + [3557] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(784), + [3560] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(785), + [3563] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(789), + [3566] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(787), + [3569] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(791), + [3572] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(792), + [3575] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(792), + [3578] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(793), + [3581] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(72), + [3584] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(73), + [3587] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(58), + [3590] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(795), + [3593] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(60), + [3596] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(785), + [3599] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(784), + [3602] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(785), + [3605] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(789), + [3608] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(787), + [3611] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(791), + [3614] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(792), + [3617] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(792), + [3620] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(793), + [3623] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(72), + [3626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(73), + [3629] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(58), + [3632] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(795), + [3635] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(60), + [3638] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(785), + [3641] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(784), + [3644] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(785), + [3647] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(789), + [3650] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(787), + [3653] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(791), + [3656] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(792), + [3659] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(792), + [3662] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(793), + [3665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(72), + [3668] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(73), + [3671] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(58), + [3674] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(795), + [3677] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(60), + [3680] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(785), + [3683] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(784), + [3686] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(785), + [3689] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(789), + [3692] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(787), + [3695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(791), + [3698] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(792), + [3701] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(792), + [3704] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(793), + [3707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(72), + [3710] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(73), + [3713] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(58), + [3716] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(795), + [3719] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(60), + [3722] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(785), + [3725] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(784), + [3728] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(785), + [3731] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(789), + [3734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(787), + [3737] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(791), + [3740] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(792), + [3743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(792), + [3746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(793), + [3749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(72), + [3752] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(73), + [3755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), + [3757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [3759] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(46), + [3764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), + [3767] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(466), + [3772] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(464), + [3775] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), + [3779] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(48), + [3784] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), + [3787] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(49), + [3790] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(50), + [3793] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(51), + [3798] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(51), + [3803] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(52), + [3806] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(687), + [3809] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(870), + [3813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), + [3815] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(695), + [3819] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [3822] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [3825] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3832] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(872), + [3836] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3843] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(873), + [3847] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(874), + [3851] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(875), + [3855] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(875), + [3859] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(876), + [3863] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(53), + [3867] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(54), + [3871] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), SHIFT(55), + [3879] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), + [3888] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [3893] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [3897] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), REDUCE(sym_array_declarator, 6), REDUCE(sym_abstract_array_declarator, 6), + [3907] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [3913] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(690), + [3916] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(58), + [3919] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(490), + [3922] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(489), + [3925] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(795), + [3928] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(60), + [3931] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(785), + [3934] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(784), + [3937] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(785), + [3940] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(789), + [3943] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(787), + [3946] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(791), + [3949] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(792), + [3952] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(792), + [3955] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(793), + [3958] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(72), + [3961] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(73), + [3964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), + [3966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [3968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(879), + [3970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(880), + [3972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), + [3974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [3976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(882), + [3978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), + [3980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [3982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(885), + [3984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [3986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(886), + [3988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), + [3990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3993] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3996] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3999] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(879), + [4002] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(880), + [4005] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(881), + [4008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(880), + [4011] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(882), + [4014] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(883), + [4017] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(884), + [4020] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(885), + [4023] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(885), + [4026] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(886), + [4029] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(58), + [4032] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(879), + [4035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(60), + [4038] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(880), + [4041] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(881), + [4044] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(880), + [4047] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(882), + [4050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(883), + [4053] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(884), + [4056] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(885), + [4059] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(885), + [4062] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(886), + [4065] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(72), + [4068] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(73), + [4071] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(58), + [4074] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(879), + [4077] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(60), + [4080] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(880), + [4083] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(881), + [4086] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(880), + [4089] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(882), + [4092] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(883), + [4095] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(884), + [4098] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(885), + [4101] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(885), + [4104] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(886), + [4107] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(72), + [4110] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(73), + [4113] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(58), + [4116] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(879), + [4119] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(60), + [4122] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(880), + [4125] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(881), + [4128] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(880), + [4131] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(882), + [4134] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(883), + [4137] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(884), + [4140] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(885), + [4143] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(885), + [4146] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(886), + [4149] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(72), + [4152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(73), + [4155] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(879), + [4158] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(880), + [4161] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(881), + [4164] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(880), + [4167] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(882), + [4170] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(883), + [4173] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(884), + [4176] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(885), + [4179] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(885), + [4182] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(886), + [4185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(58), + [4188] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(879), + [4191] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(60), + [4194] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(880), + [4197] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(881), + [4200] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(880), + [4203] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(882), + [4206] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(883), + [4209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(884), + [4212] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(885), + [4215] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(885), + [4218] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(886), + [4221] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(72), + [4224] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(73), + [4227] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(879), + [4230] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(880), + [4233] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(881), + [4236] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(880), + [4239] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(882), + [4242] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(883), + [4245] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(884), + [4248] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(885), + [4251] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(885), + [4254] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(886), + [4257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), + [4259] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(879), + [4262] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(880), + [4265] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(881), + [4268] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(880), + [4271] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(882), + [4274] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(883), + [4277] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(884), + [4280] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(885), + [4283] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(885), + [4286] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(886), + [4289] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4292] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4295] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4298] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(58), + [4301] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(879), + [4304] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(60), + [4307] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(880), + [4310] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(881), + [4313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(880), + [4316] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(882), + [4319] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(883), + [4322] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(884), + [4325] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(885), + [4328] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(885), + [4331] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(886), + [4334] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(72), + [4337] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(73), + [4340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), + [4342] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(870), + [4345] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(872), + [4348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(873), + [4350] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(875), + [4353] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(875), + [4356] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(879), + [4359] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(880), + [4362] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(881), + [4365] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(880), + [4368] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(882), + [4371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(883), + [4374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(884), + [4377] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(885), + [4380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(885), + [4383] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(886), + [4386] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(879), + [4389] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(880), + [4392] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(881), + [4395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(880), + [4398] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(882), + [4401] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(883), + [4404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(884), + [4407] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(885), + [4410] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(885), + [4413] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(886), + [4416] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(58), + [4419] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(879), + [4422] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(60), + [4425] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(880), + [4428] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(881), + [4431] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(880), + [4434] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(882), + [4437] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(883), + [4440] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(884), + [4443] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(885), + [4446] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(885), + [4449] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(886), + [4452] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(72), + [4455] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(73), + [4458] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(58), + [4461] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(879), + [4464] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(60), + [4467] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(880), + [4470] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(881), + [4473] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(880), + [4476] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(882), + [4479] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(883), + [4482] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(884), + [4485] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(885), + [4488] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(885), + [4491] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(886), + [4494] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(72), + [4497] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(73), + [4500] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(879), + [4503] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(880), + [4506] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(881), + [4509] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(880), + [4512] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(882), + [4515] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(883), + [4518] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(884), + [4521] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(885), + [4524] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(885), + [4527] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(886), + [4530] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [4533] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [4536] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [4539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [4541] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4548] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4555] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), SHIFT(724), + [4563] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4570] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(915), + [4573] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), + [4576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [4578] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), + [4581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), + [4583] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), + [4586] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), + [4589] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [4592] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [4595] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), + [4598] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), + [4601] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), + [4604] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_struct_declaration, 3), REDUCE(sym__empty_declaration, 3), + [4609] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_struct_declaration, 3), REDUCE(sym__empty_declaration, 3), + [4614] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_struct_declaration, 3), REDUCE(sym__empty_declaration, 3), + [4619] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), SHIFT(928), + [4623] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), + [4626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), + [4628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), + [4630] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), REDUCE(sym_parameter_declaration, 3), REDUCE(sym_type_name, 3), + [4635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), + [4637] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [4640] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [4643] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [4646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), + [4648] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), + [4653] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), + [4658] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_struct_declaration, 4), + [4663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [4665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), + [4668] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), + [4671] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), + [4674] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), + [4677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [4679] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), SHIFT(35), + [4682] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [4685] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [4688] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [4691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(948), + [4693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), + [4695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(945), + [4697] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [4700] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [4703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [4705] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), + [4708] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), + [4711] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(758), + [4714] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [4717] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [4720] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(795), + [4723] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(785), + [4726] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(784), + [4729] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(785), + [4732] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(789), + [4735] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(787), + [4738] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(791), + [4741] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(792), + [4744] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(792), + [4747] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(793), + [4750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), + [4752] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(852), + [4755] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(58), + [4759] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), + [4762] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(795), + [4766] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(60), + [4770] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(785), + [4774] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(784), + [4778] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(785), + [4782] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(789), + [4786] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(787), + [4790] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(791), + [4794] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(792), + [4798] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(792), + [4802] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(793), + [4806] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(72), + [4810] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(73), + [4814] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(795), + [4817] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(785), + [4820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(784), + [4823] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(785), + [4826] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(789), + [4829] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(787), + [4832] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(791), + [4835] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(792), + [4838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(792), + [4841] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(793), + [4844] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(795), + [4847] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(785), + [4850] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(784), + [4853] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(785), + [4856] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(789), + [4859] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(787), + [4862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(791), + [4865] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(792), + [4868] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(792), + [4871] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(793), + [4874] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(795), + [4877] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(785), + [4880] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(784), + [4883] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(785), + [4886] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(789), + [4889] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(787), + [4892] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(791), + [4895] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(792), + [4898] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(792), + [4901] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(793), + [4904] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(795), + [4907] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(785), + [4910] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(784), + [4913] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(785), + [4916] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(789), + [4919] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(787), + [4922] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(791), + [4925] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(792), + [4928] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(792), + [4931] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(793), + [4934] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(795), + [4937] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(785), + [4940] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(784), + [4943] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(785), + [4946] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(789), + [4949] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(787), + [4952] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(791), + [4955] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(792), + [4958] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(792), + [4961] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(793), + [4964] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(795), + [4967] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(785), + [4970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(784), + [4973] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(785), + [4976] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(789), + [4979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(787), + [4982] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(791), + [4985] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(792), + [4988] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(792), + [4991] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(793), + [4994] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(58), + [4998] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), + [5001] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(795), + [5005] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(60), + [5009] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(785), + [5013] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(784), + [5017] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(785), + [5021] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(789), + [5025] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(787), + [5029] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(791), + [5033] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(792), + [5037] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(792), + [5041] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(793), + [5045] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(72), + [5049] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(73), + [5053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [5055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), + [5057] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(46), + [5060] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(466), + [5063] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(48), + [5066] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(49), + [5069] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(51), + [5072] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(51), + [5075] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [5079] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [5083] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [5087] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(970), + [5090] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [5096] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [5102] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [5108] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_enumerator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [5114] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), + [5117] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [5122] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [5126] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), + [5130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), + [5132] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), + [5136] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), + [5140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [5142] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [5147] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [5150] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [5156] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [5160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), + [5162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), + [5164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(988), + [5166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), + [5169] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), + [5172] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(58), + [5176] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), + [5179] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(795), + [5183] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(60), + [5187] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(785), + [5191] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(784), + [5195] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(785), + [5199] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(789), + [5203] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(787), + [5207] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(791), + [5211] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(792), + [5215] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(792), + [5219] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(793), + [5223] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(72), + [5227] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(73), + [5231] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(986), + [5234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(989), + [5236] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(271), + [5241] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), + [5245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), + [5247] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), + [5250] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), + [5253] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [5260] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [5266] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), + [5269] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [5273] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [5280] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [5283] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [5286] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [5293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), + [5295] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), + [5298] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(435), + [5301] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(499), + [5304] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), + [5307] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), + [5310] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), + [5313] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), + [5316] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), + [5319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), + [5321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), + [5323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), SHIFT(490), + [5326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1003), + [5328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1004), + [5330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), + [5332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), + [5334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1006), + [5336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), + [5338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), + [5340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1009), + [5342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), + [5344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1010), + [5346] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1003), + [5349] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1004), + [5352] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1005), + [5355] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1004), + [5358] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1006), + [5361] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1007), + [5364] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1008), + [5367] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1009), + [5370] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1009), + [5373] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1010), + [5376] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1003), + [5379] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1004), + [5382] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1005), + [5385] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1004), + [5388] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1006), + [5391] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1007), + [5394] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1008), + [5397] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1009), + [5400] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1009), + [5403] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1010), + [5406] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1003), + [5409] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1004), + [5412] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1005), + [5415] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1004), + [5418] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1006), + [5421] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1007), + [5424] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1008), + [5427] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1009), + [5430] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1009), + [5433] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1010), + [5436] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1003), + [5439] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1004), + [5442] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1005), + [5445] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1004), + [5448] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1006), + [5451] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1007), + [5454] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1008), + [5457] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1009), + [5460] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1009), + [5463] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1010), + [5466] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1003), + [5469] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1004), + [5472] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1005), + [5475] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1004), + [5478] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1006), + [5481] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1007), + [5484] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1008), + [5487] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1009), + [5490] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1009), + [5493] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1010), + [5496] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1003), + [5499] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1004), + [5502] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1005), + [5505] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1004), + [5508] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1006), + [5511] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1007), + [5514] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1008), + [5517] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1009), + [5520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1009), + [5523] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1010), + [5526] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1003), + [5529] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1004), + [5532] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1005), + [5535] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1004), + [5538] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1006), + [5541] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1007), + [5544] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1008), + [5547] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1009), + [5550] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1009), + [5553] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1010), + [5556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), + [5558] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1003), + [5561] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1004), + [5564] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1005), + [5567] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1004), + [5570] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1006), + [5573] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1007), + [5576] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1008), + [5579] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1009), + [5582] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1009), + [5585] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1010), + [5588] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5591] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5594] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [5599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), + [5601] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), + [5604] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), + [5607] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), + [5610] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1003), + [5613] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1004), + [5616] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1005), + [5619] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1004), + [5622] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1006), + [5625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1007), + [5628] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1008), + [5631] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1009), + [5634] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1009), + [5637] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1010), + [5640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [5642] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(990), + [5645] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(993), + [5648] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(994), + [5650] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(996), + [5653] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(996), + [5656] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1003), + [5659] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1004), + [5662] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1005), + [5665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1004), + [5668] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1006), + [5671] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1007), + [5674] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1008), + [5677] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1009), + [5680] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1009), + [5683] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1010), + [5686] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1003), + [5689] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1004), + [5692] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1005), + [5695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1004), + [5698] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1006), + [5701] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1007), + [5704] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1008), + [5707] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1009), + [5710] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1009), + [5713] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1010), + [5716] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1003), + [5719] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1004), + [5722] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1005), + [5725] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1004), + [5728] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1006), + [5731] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1007), + [5734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1008), + [5737] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1009), + [5740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1009), + [5743] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1010), + [5746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1003), + [5749] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1004), + [5752] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1005), + [5755] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1004), + [5758] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1006), + [5761] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1007), + [5764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1008), + [5767] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1009), + [5770] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1009), + [5773] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1010), + [5776] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1003), + [5779] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1004), + [5782] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1005), + [5785] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1004), + [5788] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1006), + [5791] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1007), + [5794] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1008), + [5797] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1009), + [5800] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1009), + [5803] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1010), + [5806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), + [5808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), + [5810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [5812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), + [5814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [5816] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [5820] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [5824] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [5828] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [5831] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [5834] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [5837] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [5841] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [5845] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [5849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), + [5851] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [5860] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [5869] = {.count = 9, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(724), + [5879] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [5888] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(490), + [5891] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(489), + [5894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), + [5896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), + [5898] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_type_list_repeat1, 3), + [5903] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [5907] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [5911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1099), + [5913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), + [5915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [5917] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), + [5924] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), + [5929] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(435), + [5933] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), REDUCE(aux_sym_struct_declaration_repeat1, 3), + [5938] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 3), + [5941] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), + [5944] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), + [5947] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), SHIFT(915), + [5952] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), + [5956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1069), + [5958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1070), + [5960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), + [5962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [5964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1072), + [5966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), + [5968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), + [5970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1075), + [5972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), + [5974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1076), + [5976] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1069), + [5979] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1070), + [5982] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1071), + [5985] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1070), + [5988] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1072), + [5991] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1073), + [5994] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1074), + [5997] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1075), + [6000] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1075), + [6003] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1076), + [6006] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1069), + [6009] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1070), + [6012] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1071), + [6015] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1070), + [6018] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1072), + [6021] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1073), + [6024] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1074), + [6027] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1075), + [6030] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1075), + [6033] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1076), + [6036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), + [6038] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1069), + [6041] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1070), + [6044] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1071), + [6047] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1070), + [6050] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1072), + [6053] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1073), + [6056] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1074), + [6059] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1075), + [6062] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1075), + [6065] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1076), + [6068] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1069), + [6071] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1070), + [6074] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1071), + [6077] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1070), + [6080] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1072), + [6083] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1073), + [6086] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1074), + [6089] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1075), + [6092] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1075), + [6095] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1076), + [6098] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1069), + [6101] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1070), + [6104] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1071), + [6107] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1070), + [6110] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1072), + [6113] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1073), + [6116] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1074), + [6119] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1075), + [6122] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1075), + [6125] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1076), + [6128] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1069), + [6131] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1070), + [6134] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1071), + [6137] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1070), + [6140] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1072), + [6143] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1073), + [6146] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1074), + [6149] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1075), + [6152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1075), + [6155] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1076), + [6158] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1069), + [6161] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1070), + [6164] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1071), + [6167] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1070), + [6170] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1072), + [6173] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1073), + [6176] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1074), + [6179] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1075), + [6182] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1075), + [6185] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1076), + [6188] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1069), + [6191] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1070), + [6194] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1071), + [6197] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1070), + [6200] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1072), + [6203] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1073), + [6206] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1074), + [6209] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1075), + [6212] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1075), + [6215] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1076), + [6218] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1069), + [6221] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1070), + [6224] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1071), + [6227] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1070), + [6230] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1072), + [6233] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1073), + [6236] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1074), + [6239] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1075), + [6242] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1075), + [6245] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1076), + [6248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [6250] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1069), + [6253] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1070), + [6256] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1071), + [6259] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1070), + [6262] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1072), + [6265] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1073), + [6268] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1074), + [6271] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1075), + [6274] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1075), + [6277] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1076), + [6280] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1069), + [6283] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1070), + [6286] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1071), + [6289] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1070), + [6292] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1072), + [6295] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1073), + [6298] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1074), + [6301] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1075), + [6304] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1075), + [6307] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1076), + [6310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [6312] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1077), + [6315] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1059), + [6318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1060), + [6320] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1062), + [6323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1062), + [6326] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1069), + [6329] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1070), + [6332] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1071), + [6335] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1070), + [6338] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1072), + [6341] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1073), + [6344] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1074), + [6347] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1075), + [6350] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1075), + [6353] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1076), + [6356] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1069), + [6359] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1070), + [6362] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1071), + [6365] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1070), + [6368] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1072), + [6371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1073), + [6374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1074), + [6377] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1075), + [6380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1075), + [6383] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1076), + [6386] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1069), + [6389] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1070), + [6392] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1071), + [6395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1070), + [6398] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1072), + [6401] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1073), + [6404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1074), + [6407] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1075), + [6410] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1075), + [6413] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1076), + [6416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), + [6418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1104), + [6420] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), + [6423] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), + [6426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), + [6428] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), SHIFT(758), + [6431] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_call_expression, 3), + [6435] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), + [6438] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), + [6441] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1105), + [6444] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(757), + [6448] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(758), + [6453] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), + [6456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [6458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), + [6460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [6462] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [6466] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [6470] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), SHIFT(724), + [6475] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [6479] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(391), + [6482] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), SHIFT(35), + [6485] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), }; const TSLanguage *tree_sitter_c() {